Uses of Class
org.eclipse.rdf4j.sail.memory.model.MemStatementList
-
Packages that use MemStatementList Package Description org.eclipse.rdf4j.sail.memory An implementation of the RDF SAIL API that uses main memory for storage.org.eclipse.rdf4j.sail.memory.model MemoryStore-specific implementations of the core RDF model objects. -
-
Uses of MemStatementList in org.eclipse.rdf4j.sail.memory
Fields in org.eclipse.rdf4j.sail.memory declared as MemStatementList Modifier and Type Field Description private MemStatementList
MemEvaluationStatistics. memStatementList
private MemStatementList
MemorySailStore. statements
List containing all available statements.Methods in org.eclipse.rdf4j.sail.memory that return MemStatementList Modifier and Type Method Description private MemStatementList
MemorySailStore.MemorySailSink. getSmallestMemStatementList(MemResource memSubj, MemIRI memPred, MemValue memObj, MemResource memContext)
private MemStatementList
MemorySailStore. getSmallestStatementList(MemResource subj, MemIRI pred, MemValue obj)
Methods in org.eclipse.rdf4j.sail.memory with parameters of type MemStatementList Modifier and Type Method Description private CloseableIteration<MemStatement,SailException>
MemorySailStore. getMemStatementIterator(MemResource subj, MemIRI pred, MemValue obj, java.lang.Boolean explicit, int snapshot, MemResource[] memContexts, MemStatementList statementList)
Constructors in org.eclipse.rdf4j.sail.memory with parameters of type MemStatementList Constructor Description MemEvaluationStatistics(MemValueFactory valueFactory, MemStatementList memStatementList)
-
Uses of MemStatementList in org.eclipse.rdf4j.sail.memory.model
Fields in org.eclipse.rdf4j.sail.memory.model declared as MemStatementList Modifier and Type Field Description (package private) MemStatementList
MemResource. contextStatements
The list of statements for which this MemURI represents the context.static MemStatementList
MemValue. EMPTY_LIST
A shared empty MemStatementList that is returned by MemURI and MemBNode to represent an empty list.private MemStatementList
MemBNode. objectStatements
The list of statements for which this MemBNode is the object.private MemStatementList
MemIRI. objectStatements
The list of statements for which this MemURI is the object.private MemStatementList
MemLiteral. objectStatements
The list of statements for which this MemLiteral is the object.private MemStatementList
MemTriple. objectStatements
The list of statements for which this MemTriple is the object.private MemStatementList
MemIRI. predicateStatements
The list of statements for which this MemURI is the predicate.(package private) MemStatementList
MemResource. subjectStatements
The list of statements for which this MemURI is the subject.Methods in org.eclipse.rdf4j.sail.memory.model that return MemStatementList Modifier and Type Method Description MemStatementList
MemResource. getContextStatementList()
MemStatementList
MemTriple. getContextStatementList()
MemStatementList
MemBNode. getObjectStatementList()
MemStatementList
MemIRI. getObjectStatementList()
MemStatementList
MemLiteral. getObjectStatementList()
MemStatementList
MemTriple. getObjectStatementList()
MemStatementList
MemValue. getObjectStatementList()
Gets the list of statements for which this MemValue is the object.MemStatementList
MemIRI. getPredicateStatementList()
Gets the list of statements for which this MemURI is the predicate.MemStatementList
MemResource. getSubjectStatementList()
Methods in org.eclipse.rdf4j.sail.memory.model with parameters of type MemStatementList Modifier and Type Method Description static CloseableIteration<MemStatement,SailException>
MemStatementIterator. cacheAwareInstance(MemStatementList smallestList, MemResource subj, MemIRI pred, MemValue obj, java.lang.Boolean explicit, int snapshot, MemResource[] memContexts, MemStatementIteratorCache iteratorCache)
Constructors in org.eclipse.rdf4j.sail.memory.model with parameters of type MemStatementList Constructor Description MemStatementIterator(MemStatementList statementList, MemResource subject, MemIRI predicate, MemValue object, java.lang.Boolean explicit, int snapshot, MemStatementIteratorCache iteratorCache, MemResource... contexts)
Creates a new MemStatementIterator that will iterate over the statements contained in the supplied MemStatementList searching for statements that match the specified pattern of subject, predicate, object and context(s).MemTripleIterator(MemStatementList statementList, MemResource subject, MemIRI predicate, MemValue object, int snapshot)
Creates a new MemTripleIterator that will iterate over the triples contained in the supplied MemStatementList searching for triples that occur as either subject or object in those statements, and which match the specified pattern of subject, predicate, object.
-