Interface MemValue

All Superinterfaces:
Serializable, Value
All Known Implementing Classes:
BooleanMemLiteral, CalendarMemLiteral, DecimalMemLiteral, IntegerMemLiteral, MemBNode, MemIRI, MemLiteral, MemResource, MemTriple, NumericMemLiteral

public interface MemValue extends Value
A MemoryStore-specific extension of the Value interface, giving it node properties.
  • Field Details Link icon

    • EMPTY_LIST Link icon

      static final MemStatementList EMPTY_LIST
      A shared empty MemStatementList that is returned by MemURI and MemBNode to represent an empty list. The use of a shared list reduces memory usage.
  • Method Details Link icon

    • getCreator Link icon

      Object getCreator()
      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.
    • hasStatements Link icon

      boolean hasStatements()
      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.
      Returns:
      true if the MemValue has statements, false otherwise.
    • getObjectStatementList Link icon

      MemStatementList getObjectStatementList()
      Gets the list of statements for which this MemValue is the object.
      Returns:
      A MemStatementList containing the statements.
    • getObjectStatementCount Link icon

      int getObjectStatementCount()
      Gets the number of statements for which this MemValue is the object.
      Returns:
      An integer larger than or equal to 0.
    • addObjectStatement Link icon

      void addObjectStatement(MemStatement st) throws InterruptedException
      Adds a statement to this MemValue's list of statements for which it is the object.
      Throws:
      InterruptedException
    • cleanSnapshotsFromObjectStatements Link icon

      void cleanSnapshotsFromObjectStatements(int currentSnapshot) throws InterruptedException
      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.
      Parameters:
      currentSnapshot - The current snapshot version.
      Throws:
      InterruptedException
    • hasSubjectStatements Link icon

      boolean hasSubjectStatements()
    • hasPredicateStatements Link icon

      boolean hasPredicateStatements()
    • hasObjectStatements Link icon

      boolean hasObjectStatements()
    • hasContextStatements Link icon

      boolean hasContextStatements()