Class NativeIRI
java.lang.Object
org.eclipse.rdf4j.model.base.AbstractIRI
org.eclipse.rdf4j.model.impl.SimpleIRI
org.eclipse.rdf4j.sail.nativerdf.model.NativeIRI
- All Implemented Interfaces:
Serializable
,IRI
,Resource
,Value
,NativeResource
,NativeValue
- See Also:
-
Field Summary
Fields inherited from interface org.eclipse.rdf4j.sail.nativerdf.model.NativeValue
UNKNOWN_ID
-
Constructor Summary
ModifierConstructorDescriptionprotected
NativeIRI
(ValueStoreRevision revision, int internalID) NativeIRI
(ValueStoreRevision revision, String uri) NativeIRI
(ValueStoreRevision revision, String uri, int internalID) NativeIRI
(ValueStoreRevision revision, String namespace, String localname) NativeIRI
(ValueStoreRevision revision, String namespace, String localname, int internalID) -
Method Summary
Modifier and TypeMethodDescriptionboolean
Compares this IRI to another object.int
Gets the ID that is used in the native store for this Value.Gets the revision of the value store that created this value.void
setInternalID
(int internalID, ValueStoreRevision revision) Sets the ID that is used for this value in a specific revision of the value store.Methods inherited from class org.eclipse.rdf4j.model.impl.SimpleIRI
getLocalName, getNamespace, setIRIString, stringValue
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
Methods inherited from interface org.eclipse.rdf4j.model.Value
isBNode, isLiteral, isTriple, stringValue
-
Constructor Details
-
NativeIRI
-
NativeIRI
-
NativeIRI
-
NativeIRI
-
NativeIRI
-
-
Method Details
-
setInternalID
Description copied from interface:NativeValue
Sets the ID that is used for this value in a specific revision of the value store.- Specified by:
setInternalID
in interfaceNativeValue
-
getValueStoreRevision
Description copied from interface:NativeValue
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 interfaceNativeValue
- Returns:
- The revision of the value store that created this value at the time it last set the value's internal ID.
-
getInternalID
public int getInternalID()Description copied from interface:NativeValue
Gets the ID that is used in the native store for this Value.- Specified by:
getInternalID
in interfaceNativeValue
- Returns:
- The value's ID, or
NativeValue.UNKNOWN_ID
if not yet set.
-
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
-