Class MemTriple
java.lang.Object
org.eclipse.rdf4j.sail.memory.model.MemTriple
- All Implemented Interfaces:
Serializable
,Resource
,Triple
,Value
,MemResource
,MemValue
A MemoryStore-specific implementation of
Triple
.- Author:
- Jeen Broekstra
- See Also:
-
Field Summary
Fields inherited from interface org.eclipse.rdf4j.sail.memory.model.MemValue
EMPTY_LIST
-
Constructor Summary
ConstructorDescriptionMemTriple
(Object creator, MemResource subject, MemIRI predicate, MemValue object) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Adds a statement to this MemResource's list of statements for which it represents the context.void
Adds a statement to this MemValue's list of statements for which it is the object.void
Adds a statement to this MemResource's list of statements for which it is the subject.void
cleanSnapshotsFromContextStatements
(int currentSnapshot) Removes statements from old snapshots (those that have expired at or before the specified snapshot version) from this MemValue's list of statements for which it is the context.void
cleanSnapshotsFromObjectStatements
(int currentSnapshot) Removes statements from old snapshots (those that have expired at or before the specified snapshot version) from this MemValue's list of statements for which it is the object.void
cleanSnapshotsFromSubjectStatements
(int currentSnapshot) Removes statements from old snapshots (those that have expired at or before the specified snapshot version) from this MemValue's list of statements for which it is the subject.boolean
Compares this triple to another object.int
Gets the number of statements for which this MemResource represents the context.Gets the list of statements for which this MemResource represents the context.Returns the object that created this MemValue.Gets the object of this triple.int
Gets the number of statements for which this MemValue is the object.Gets the list of statements for which this MemValue is the object.Gets the predicate of this triple.Gets the subject of this triple.int
Gets the number of statements for which this MemResource is the subject.Gets the list of statements for which this MemResource is the subject.int
hashCode()
Computes the hash code of this triple.boolean
Checks whether this MemValue has any statements.void
Removes a statement from this MemResource's list of statements for which it represents the context.void
Removes a statement from this MemValue's list of statements for which it is the object.void
Removes a statement from this MemResource's list of statements for which it is the subject.Returns the String-value of a Value object.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
-
MemTriple
-
-
Method Details
-
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
-
toString
-
getCreator
Description copied from interface:MemValue
Returns the object that created this MemValue. MemValues are only unique within a single repository, but an application could use several repositories at the same time, passing MemValues generated by one Sail to another Sail. In such situations, the MemValue of the first Sail cannot be used by the second Sail.- Specified by:
getCreator
in interfaceMemValue
-
hasStatements
public boolean hasStatements()Description copied from interface:MemValue
Checks whether this MemValue has any statements. A MemValue object has statements if there is at least one statement where it is used as the subject, predicate, object or context value.- Specified by:
hasStatements
in interfaceMemValue
- Returns:
- true if the MemValue has statements, false otherwise.
-
getObjectStatementList
Description copied from interface:MemValue
Gets the list of statements for which this MemValue is the object.- Specified by:
getObjectStatementList
in interfaceMemValue
- Returns:
- A MemStatementList containing the statements.
-
getObjectStatementCount
public int getObjectStatementCount()Description copied from interface:MemValue
Gets the number of statements for which this MemValue is the object.- Specified by:
getObjectStatementCount
in interfaceMemValue
- Returns:
- An integer larger than or equal to 0.
-
addObjectStatement
Description copied from interface:MemValue
Adds a statement to this MemValue's list of statements for which it is the object.- Specified by:
addObjectStatement
in interfaceMemValue
-
removeObjectStatement
Description copied from interface:MemValue
Removes a statement from this MemValue's list of statements for which it is the object.- Specified by:
removeObjectStatement
in interfaceMemValue
-
cleanSnapshotsFromObjectStatements
public void cleanSnapshotsFromObjectStatements(int currentSnapshot) Description copied from interface:MemValue
Removes statements from old snapshots (those that have expired at or before the specified snapshot version) from this MemValue's list of statements for which it is the object.- Specified by:
cleanSnapshotsFromObjectStatements
in interfaceMemValue
- Parameters:
currentSnapshot
- The current snapshot version.
-
getSubjectStatementList
Description copied from interface:MemResource
Gets the list of statements for which this MemResource is the subject.- Specified by:
getSubjectStatementList
in interfaceMemResource
- Returns:
- a MemStatementList containing the statements.
-
getSubjectStatementCount
public int getSubjectStatementCount()Description copied from interface:MemResource
Gets the number of statements for which this MemResource is the subject.- Specified by:
getSubjectStatementCount
in interfaceMemResource
- Returns:
- An integer larger than or equal to 0.
-
addSubjectStatement
Description copied from interface:MemResource
Adds a statement to this MemResource's list of statements for which it is the subject.- Specified by:
addSubjectStatement
in interfaceMemResource
-
removeSubjectStatement
Description copied from interface:MemResource
Removes a statement from this MemResource's list of statements for which it is the subject.- Specified by:
removeSubjectStatement
in interfaceMemResource
-
cleanSnapshotsFromSubjectStatements
public void cleanSnapshotsFromSubjectStatements(int currentSnapshot) Description copied from interface:MemResource
Removes statements from old snapshots (those that have expired at or before the specified snapshot version) from this MemValue's list of statements for which it is the subject.- Specified by:
cleanSnapshotsFromSubjectStatements
in interfaceMemResource
- Parameters:
currentSnapshot
- The current snapshot version.
-
getContextStatementList
Description copied from interface:MemResource
Gets the list of statements for which this MemResource represents the context.- Specified by:
getContextStatementList
in interfaceMemResource
- Returns:
- a MemStatementList containing the statements.
-
getContextStatementCount
public int getContextStatementCount()Description copied from interface:MemResource
Gets the number of statements for which this MemResource represents the context.- Specified by:
getContextStatementCount
in interfaceMemResource
- Returns:
- An integer larger than or equal to 0.
-
addContextStatement
Description copied from interface:MemResource
Adds a statement to this MemResource's list of statements for which it represents the context.- Specified by:
addContextStatement
in interfaceMemResource
-
removeContextStatement
Description copied from interface:MemResource
Removes a statement from this MemResource's list of statements for which it represents the context.- Specified by:
removeContextStatement
in interfaceMemResource
-
cleanSnapshotsFromContextStatements
public void cleanSnapshotsFromContextStatements(int currentSnapshot) Description copied from interface:MemResource
Removes statements from old snapshots (those that have expired at or before the specified snapshot version) from this MemValue's list of statements for which it is the context.- Specified by:
cleanSnapshotsFromContextStatements
in interfaceMemResource
- Parameters:
currentSnapshot
- The current snapshot version.
-
getSubject
Description copied from interface:Triple
Gets the subject of this triple.- Specified by:
getSubject
in interfaceTriple
- Returns:
- The triple's subject.
-
getPredicate
Description copied from interface:Triple
Gets the predicate of this triple.- Specified by:
getPredicate
in interfaceTriple
- Returns:
- The triple's predicate.
-
getObject
Description copied from interface:Triple
Gets the object of this triple. -
hashCode
public int hashCode()Description copied from interface:Triple
Computes the hash code of this triple.- Specified by:
hashCode
in interfaceTriple
- Overrides:
hashCode
in classObject
- Returns:
- a hash code for this triple computed as
Objects.hash
(Triple.getSubject()
,Triple.getPredicate()
,Triple.getObject()
)
-
equals
Description copied from interface:Triple
Compares this triple to another object.
-