Package org.apache.commons.rdfrdf4j
Interface RDF4JBlankNode
- All Superinterfaces:
org.apache.commons.rdf.api.BlankNode
,org.apache.commons.rdf.api.BlankNodeOrIRI
,RDF4JBlankNodeOrIRI
,RDF4JTerm
,org.apache.commons.rdf.api.RDFTerm
Marker interface for RDF4J implementations of Commons RDF
BlankNode
.
The underlying RDF4J BNode
instance can be retrieved with
asValue()
.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.rdf4j.model.BNode
asValue()
Return the RDF4JValue
that 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 Details
-
asValue
org.eclipse.rdf4j.model.BNode asValue()Description copied from interface:RDF4JTerm
Return the RDF4JValue
that this RDFTerm represents.- Specified by:
asValue
in interfaceRDF4JBlankNodeOrIRI
- Specified by:
asValue
in interfaceRDF4JTerm
- Returns:
- The wrapped
Value
(e.g. aLiteral
,IRI
orBNode
.
-