Class MemTripleTerm
java.lang.Object
org.eclipse.rdf4j.sail.memory.model.MemTripleTerm
- All Implemented Interfaces:
Serializable, TripleTerm, Value, MemValue
A MemoryStore-specific implementation of
TripleTerm.- Author:
- Jeen Broekstra
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface Value
Value.Type -
Field Summary
Fields inherited from interface MemValue
EMPTY_LISTModifier and TypeFieldDescriptionstatic final MemStatementListA shared empty MemStatementList that is returned by MemURI and MemBNode to represent an empty list. -
Constructor Summary
ConstructorsConstructorDescriptionMemTripleTerm(Object creator, MemResource subject, MemIRI predicate, MemValue object) -
Method Summary
Modifier and TypeMethodDescriptionvoidAdds a statement to this MemValue's list of statements for which it is the object.voidcleanSnapshotsFromObjectStatements(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.booleanCompares this triple to another object.Returns the object that created this MemValue.Gets the object of this triple.intGets 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.booleaninthashCode()Computes the hash code of this triple.booleanbooleanbooleanChecks whether this MemValue has any statements.booleanbooleanmatchesSPO(MemResource subject, MemIRI predicate, MemValue object) Returns the String-value of a Value object.toString()Methods inherited from interface TripleTerm
getType, isTripleTermModifier and TypeMethodDescriptiondefault Value.TypegetType()default booleanCheck if the object is an instance of the given type.Methods inherited from interface Value
isBNode, isIRI, isLiteral, isResourceModifier and TypeMethodDescriptiondefault booleanisBNode()Check if the object is an instance of the given type.default booleanisIRI()Check if the object is an instance of the given type.default booleanCheck if the object is an instance of the given type.default booleanCheck if the object is an instance of the given type.
-
Constructor Details
-
MemTripleTerm
-
-
Method Details
-
stringValue
-
toString
-
getCreator
Description copied from interface:MemValueReturns 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:
getCreatorin interfaceMemValue
-
hasStatements
public boolean hasStatements()Description copied from interface:MemValueChecks 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:
hasStatementsin interfaceMemValue- Returns:
- true if the MemValue has statements, false otherwise.
-
getObjectStatementList
Description copied from interface:MemValueGets the list of statements for which this MemValue is the object.- Specified by:
getObjectStatementListin interfaceMemValue- Returns:
- A MemStatementList containing the statements.
-
getObjectStatementCount
public int getObjectStatementCount()Description copied from interface:MemValueGets the number of statements for which this MemValue is the object.- Specified by:
getObjectStatementCountin interfaceMemValue- Returns:
- An integer larger than or equal to 0.
-
addObjectStatement
Description copied from interface:MemValueAdds a statement to this MemValue's list of statements for which it is the object.- Specified by:
addObjectStatementin interfaceMemValue- Throws:
InterruptedException
-
cleanSnapshotsFromObjectStatements
Description copied from interface:MemValueRemoves 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:
cleanSnapshotsFromObjectStatementsin interfaceMemValue- Parameters:
currentSnapshot- The current snapshot version.- Throws:
InterruptedException
-
getSubject
Description copied from interface:TripleTermGets the subject of this triple.- Specified by:
getSubjectin interfaceTripleTerm- Returns:
- The triple's subject.
-
getPredicate
Description copied from interface:TripleTermGets the predicate of this triple.- Specified by:
getPredicatein interfaceTripleTerm- Returns:
- The triple's predicate.
-
getObject
Description copied from interface:TripleTermGets the object of this triple.- Specified by:
getObjectin interfaceTripleTerm- Returns:
- The triple's object.
-
hashCode
public int hashCode()Description copied from interface:TripleTermComputes the hash code of this triple.- Specified by:
hashCodein interfaceTripleTerm- Overrides:
hashCodein classObject- Returns:
- a hash code for this triple computed as
Objects.hash(TripleTerm.getSubject(),TripleTerm.getPredicate(),TripleTerm.getObject())
-
equals
Description copied from interface:TripleTermCompares this triple to another object.- Specified by:
equalsin interfaceTripleTerm- Overrides:
equalsin classObject- Parameters:
other- the object to compare this triple to- Returns:
trueif theotherobject is an instance ofTripleTermand if their subjects, predicates and objects are equal;falseotherwise
-
hasSubjectStatements
public boolean hasSubjectStatements()- Specified by:
hasSubjectStatementsin interfaceMemValue
-
hasPredicateStatements
public boolean hasPredicateStatements()- Specified by:
hasPredicateStatementsin interfaceMemValue
-
hasObjectStatements
public boolean hasObjectStatements()- Specified by:
hasObjectStatementsin interfaceMemValue
-
hasContextStatements
public boolean hasContextStatements()- Specified by:
hasContextStatementsin interfaceMemValue
-
matchesSPO
-