Package org.eclipse.rdf4j.model
Interface BNode
- All Superinterfaces:
Resource
,Serializable
,Value
- All Known Implementing Classes:
AbstractBNode
,LmdbBNode
,MemBNode
,NativeBNode
,SimpleBNode
An RDF-1.1 blank node (aka bnode, aka anonymous node). A blank node has an identifier to be able to
compare it to other blank nodes internally. Please note that, conceptually, blank node equality can only be
determined by examining the statements that refer to them.
- See Also:
-
Method Summary
Methods inherited from interface org.eclipse.rdf4j.model.Resource
isResource
Methods inherited from interface org.eclipse.rdf4j.model.Value
isIRI, isLiteral, isTriple, stringValue
-
Method Details
-
isBNode
default boolean isBNode()Description copied from interface:Value
Check if the object is an instance of the given type. Typically 2x than using instanceof.For implementers: This default implementation is overridden in the repsective sub-interface.
-
getID
String getID()Retrieves this blank node's identifier.- Returns:
- A blank node identifier.
-
equals
Compares this blank node to another object. -
hashCode
int hashCode()Computes the hash code of this blank node.
-