public class Node_Literal extends Node_Concrete
Node.NotLiteral
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object other)
Nodes only equal other Nodes that have equal labels.
|
Object |
getIndexingValue()
Literal nodes defer their indexing value to the component literal.
|
LiteralLabel |
getLiteral()
Answer the literal value of a literal node, or throw an UnsupportedOperationException
if it's not a literal node
|
RDFDatatype |
getLiteralDatatype()
Answer the RDF datatype object of this node's literal value, if it is
a literal; otherwise die horribly.
|
String |
getLiteralDatatypeURI()
Answer the data-type URI of this node's literal value, if it is a
literal; otherwise die horribly.
|
boolean |
getLiteralIsXML() |
String |
getLiteralLanguage()
Answer the language of this node's literal value, if it is a literal;
otherwise die horribly.
|
String |
getLiteralLexicalForm()
Answer the lexical form of this node's literal value, if it is a literal;
otherwise die horribly.
|
Object |
getLiteralValue()
Answer the value of this node's literal value, if it is a literal;
otherwise die horribly.
|
boolean |
isLiteral()
Answer true iff this node is a literal node [subclasses override]
|
boolean |
matches(Node x)
Answer true iff this node accepts the other one as a match.
|
boolean |
sameValueAs(Object o)
Test that two nodes are semantically equivalent.
|
String |
toString(PrefixMapping pm,
boolean quoting)
Answer a human readable representation of this Node, quoting literals if specified,
and compressing URIs using the prefix mapping supplied.
|
Object |
visitWith(NodeVisitor v)
Visit a Node and dispatch on it to the appropriate method from the
NodeVisitor
v . |
isConcrete
create, getBlankNodeId, getBlankNodeLabel, getLocalName, getName, getNameSpace, getURI, hashCode, hasURI, isBlank, isURI, isVariable, toString, toString, toString
public LiteralLabel getLiteral()
Node
getLiteral
in class Node
public final Object getLiteralValue()
Node
getLiteralValue
in class Node
public final String getLiteralLexicalForm()
Node
getLiteralLexicalForm
in class Node
public final String getLiteralLanguage()
Node
getLiteralLanguage
in class Node
public final String getLiteralDatatypeURI()
Node
getLiteralDatatypeURI
in class Node
public final RDFDatatype getLiteralDatatype()
Node
getLiteralDatatype
in class Node
public final boolean getLiteralIsXML()
getLiteralIsXML
in class Node
public String toString(PrefixMapping pm, boolean quoting)
Node
public boolean isLiteral()
Node
public Object getIndexingValue()
getIndexingValue
in class Node
Node.getIndexingValue()
public Object visitWith(NodeVisitor v)
Node
v
.public boolean equals(Object other)
Node
public boolean sameValueAs(Object o)
Default implementation is to use equals, subclasses should override this.
sameValueAs
in class Node
Licenced under the Apache License, Version 2.0