Package org.apache.commons.rdf.rdf4j
Interface RDF4JBlankNode
-
- All Superinterfaces:
BlankNode,BlankNodeOrIRI,RDF4JBlankNodeOrIRI,RDF4JTerm,RDFTerm
- All Known Implementing Classes:
BlankNodeImpl
public interface RDF4JBlankNode extends RDF4JBlankNodeOrIRI, BlankNode
Marker interface for RDF4J implementations of Commons RDFBlankNode.The underlying RDF4J
BNodeinstance can be retrieved withasValue().- See Also:
RDF4J.createBlankNode()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.rdf4j.model.BNodeasValue()Return the RDF4JValuethat this RDFTerm represents.-
Methods inherited from interface org.apache.commons.rdf.api.BlankNode
equals, hashCode, uniqueReference
-
Methods inherited from interface org.apache.commons.rdf.api.RDFTerm
ntriplesString
-
-
-
-
Method Detail
-
asValue
org.eclipse.rdf4j.model.BNode asValue()
Description copied from interface:RDF4JTermReturn the RDF4JValuethat this RDFTerm represents.- Specified by:
asValuein interfaceRDF4JBlankNodeOrIRI- Specified by:
asValuein interfaceRDF4JTerm- Returns:
- The wrapped
Value(e.g. aLiteral,IRIorBNode.
-
-