Class LmdbBNode
- java.lang.Object
-
- org.eclipse.rdf4j.model.base.AbstractBNode
-
- org.eclipse.rdf4j.model.impl.SimpleBNode
-
- org.eclipse.rdf4j.sail.lmdb.model.LmdbBNode
-
- All Implemented Interfaces:
Serializable,org.eclipse.rdf4j.model.BNode,org.eclipse.rdf4j.model.Resource,org.eclipse.rdf4j.model.Value,LmdbResource,LmdbValue
public class LmdbBNode extends SimpleBNode implements LmdbResource
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.eclipse.rdf4j.sail.lmdb.model.LmdbValue
UNKNOWN_ID
-
-
Constructor Summary
Constructors Constructor Description LmdbBNode(ValueStoreRevision revision, long internalID)LmdbBNode(ValueStoreRevision revision, String nodeID)LmdbBNode(ValueStoreRevision revision, String nodeID, long internalID)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetID()longgetInternalID()Gets the ID that is used in the lmdb store for this Value.ValueStoreRevisiongetValueStoreRevision()Gets the revision of the value store that created this value.protected voidinit()voidsetID(String id)voidsetInternalID(long internalID, ValueStoreRevision revision)Sets the ID that is used for this value in a specific revision of the value store.protected ObjectwriteReplace()-
Methods inherited from class org.eclipse.rdf4j.model.base.AbstractBNode
hashCode, stringValue, toString
-
-
-
-
Constructor Detail
-
LmdbBNode
public LmdbBNode(ValueStoreRevision revision, long internalID)
-
LmdbBNode
public LmdbBNode(ValueStoreRevision revision, String nodeID)
-
LmdbBNode
public LmdbBNode(ValueStoreRevision revision, String nodeID, long internalID)
-
-
Method Detail
-
setInternalID
public void setInternalID(long internalID, ValueStoreRevision revision)Description copied from interface:LmdbValueSets the ID that is used for this value in a specific revision of the value store.- Specified by:
setInternalIDin interfaceLmdbValue
-
getValueStoreRevision
public ValueStoreRevision getValueStoreRevision()
Description copied from interface:LmdbValueGets the revision of the value store that created this value. The value's internal ID is only valid when it's value store revision is equal to the value store's current revision.- Specified by:
getValueStoreRevisionin interfaceLmdbValue- Returns:
- The revision of the value store that created this value at the time it last set the value's internal ID.
-
getInternalID
public long getInternalID()
Description copied from interface:LmdbValueGets the ID that is used in the lmdb store for this Value.- Specified by:
getInternalIDin interfaceLmdbValue- Returns:
- The value's ID, or
LmdbValue.UNKNOWN_IDif not yet set.
-
setID
public void setID(String id)
- Overrides:
setIDin classSimpleBNode
-
getID
public String getID()
- Specified by:
getIDin interfaceorg.eclipse.rdf4j.model.BNode- Overrides:
getIDin classSimpleBNode
-
init
protected void init()
-
equals
public boolean equals(Object o)
- Specified by:
equalsin interfaceorg.eclipse.rdf4j.model.BNode- Overrides:
equalsin classorg.eclipse.rdf4j.model.base.AbstractBNode
-
writeReplace
protected Object writeReplace() throws ObjectStreamException
- Throws:
ObjectStreamException
-
-