Class LmdbIRI
java.lang.Object
org.eclipse.rdf4j.model.base.AbstractIRI
org.eclipse.rdf4j.model.impl.SimpleIRI
org.eclipse.rdf4j.sail.lmdb.model.LmdbIRI
- All Implemented Interfaces:
Serializable
,IRI
,Resource
,Value
,LmdbResource
,LmdbValue
- See Also:
-
Field Summary
Fields inherited from interface org.eclipse.rdf4j.sail.lmdb.model.LmdbValue
UNKNOWN_ID
-
Constructor Summary
ConstructorDescriptionLmdbIRI
(ValueStoreRevision revision, long internalID) LmdbIRI
(ValueStoreRevision revision, String uri) LmdbIRI
(ValueStoreRevision revision, String uri, long internalID) LmdbIRI
(ValueStoreRevision revision, String namespace, String localname) LmdbIRI
(ValueStoreRevision revision, String namespace, String localname, long internalID) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Compares this IRI to another object.long
Gets the ID that is used in the lmdb store for this Value.Gets the local name part of this IRI.Gets the namespace part of this IRI.Gets the revision of the value store that created this value.protected void
init()
void
setInternalID
(long internalID, ValueStoreRevision revision) Sets the ID that is used for this value in a specific revision of the value store.void
setIRIString
(String iriString) Returns the String-value of a Value object.protected Object
Methods inherited from class org.eclipse.rdf4j.model.base.AbstractIRI
hashCode, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.rdf4j.model.Resource
isResource
-
Constructor Details
-
LmdbIRI
-
LmdbIRI
-
LmdbIRI
-
LmdbIRI
-
LmdbIRI
-
-
Method Details
-
setInternalID
Description copied from interface:LmdbValue
Sets the ID that is used for this value in a specific revision of the value store.- Specified by:
setInternalID
in interfaceLmdbValue
-
getValueStoreRevision
Description copied from interface:LmdbValue
Gets 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:
getValueStoreRevision
in 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:LmdbValue
Gets the ID that is used in the lmdb store for this Value.- Specified by:
getInternalID
in interfaceLmdbValue
- Returns:
- The value's ID, or
LmdbValue.UNKNOWN_ID
if not yet set.
-
setIRIString
- Overrides:
setIRIString
in classSimpleIRI
-
getNamespace
Description copied from interface:IRI
Gets the namespace part of this IRI.The namespace is defined as per the algorithm described in the class documentation.
- Specified by:
getNamespace
in interfaceIRI
- Overrides:
getNamespace
in classSimpleIRI
- Returns:
- the namespace of this IRI
-
getLocalName
Description copied from interface:IRI
Gets the local name part of this IRI.The local name is defined as per the algorithm described in the class documentation.
- Specified by:
getLocalName
in interfaceIRI
- Overrides:
getLocalName
in classSimpleIRI
- Returns:
- the local name of this IRI
-
stringValue
Description copied from interface:Value
Returns the String-value of a Value object. This returns either aLiteral
's label, aIRI
's URI or aBNode
's ID.- Specified by:
stringValue
in interfaceValue
- Overrides:
stringValue
in classSimpleIRI
-
init
protected void init() -
equals
Description copied from interface:IRI
Compares this IRI to another object.- Specified by:
equals
in interfaceIRI
- Overrides:
equals
in classAbstractIRI
- Parameters:
o
- the object to compare this IRI to- Returns:
true
, if the other object is an instance ofIRI
and their string values are equal;false
, otherwise
-
writeReplace
- Throws:
ObjectStreamException
-