Package org.apache.jena.graph
Class Node_ANY
java.lang.Object
org.apache.jena.graph.Node
org.apache.jena.graph.Node_Fluid
org.apache.jena.graph.Node_ANY
- All Implemented Interfaces:
Serializable
A Node_ANY (there should be only one) is a meta-node that is used to stand
for any other node in a query.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.jena.graph.Node
Node.NotLiteral
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Node_ANY's are only equal to other Node_ANY'sboolean
Answer true iff this node accepts the other one as a match.toString()
Answer a human-readable representation of this Node.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.Visit a Node and dispatch on it to the appropriate method from the NodeVisitorv
.Methods inherited from class org.apache.jena.graph.Node_Fluid
isConcrete
Methods inherited from class org.apache.jena.graph.Node
getBlankNodeId, getBlankNodeLabel, getGraph, getIndexingValue, getLiteral, getLiteralDatatype, getLiteralDatatypeURI, getLiteralIsXML, getLiteralLanguage, getLiteralLexicalForm, getLiteralValue, getLocalName, getName, getNameSpace, getTriple, getURI, hashCode, hasURI, isBlank, isExt, isLiteral, isNodeGraph, isNodeTriple, isURI, isVariable, sameValueAs, toString, toString
-
Method Details
-
equals
Node_ANY's are only equal to other Node_ANY's -
visitWith
Description copied from class:Node
Visit a Node and dispatch on it to the appropriate method from the NodeVisitorv
. -
matches
Description copied from class:Node
Answer true iff this node accepts the other one as a match. The default is an equality test; it is over-ridden in subclasses to provide the appropriate semantics for literals, ANY, and variables. -
toString
Description copied from class:Node
Answer a human-readable representation of this Node. It will not compress URIs, nor quote literals (because at the moment too many places use toString() for something machine-oriented).
-