Class StorageTuples
java.lang.Object
org.apache.jena.dboe.storage.simple.StorageTuples
- All Implemented Interfaces:
StorageRDF
- Direct Known Subclasses:
StorageSimpleMem
Split into storage of tuples/3 for triples and tuples/4 for quads
-
Method Summary
Modifier and TypeMethodDescriptionvoidAdd a triple to the default graph.voidAdd to a named graph.booleanTest whether the default graph contains the triple.booleanTest whether any named graph matches the quad.voidDelete from the default graph.voidDelete from a named graph.Find in the default graph.Find in named graphs: does not look in the default graph.voidDelete all triples matching afind-like pattern.voidDelete all quads matching afind-like pattern.Find in the default graph.Find in named graphs: does not look in the default graph.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.jena.dboe.storage.StorageRDF
add, add, contains, contains, delete, delete, find, find, findUnionGraph, stream, stream, streamUnionGraph
-
Method Details
-
add
Description copied from interface:StorageRDFAdd a triple to the default graph.Concrete operation.
- Specified by:
addin interfaceStorageRDF
-
add
Description copied from interface:StorageRDFAdd to a named graph.Concrete operation.
- Specified by:
addin interfaceStorageRDF
-
delete
Description copied from interface:StorageRDFDelete from the default graph.s,p,oare all concrete.Concrete operation.
See
StorageRDF.removeAll(Node, Node, Node)for remove by pattern.- Specified by:
deletein interfaceStorageRDF
-
delete
Description copied from interface:StorageRDFDelete from a named graph.s,p,oare all concrete.Concrete operation.
See
StorageRDF.removeAll(Node, Node, Node, Node)for remove by pattern.- Specified by:
deletein interfaceStorageRDF
-
removeAll
Description copied from interface:StorageRDFDelete all triples matching afind-like pattern.Pattern operation.
- Specified by:
removeAllin interfaceStorageRDF
-
removeAll
Description copied from interface:StorageRDFDelete all quads matching afind-like pattern.Pattern operation.
- Specified by:
removeAllin interfaceStorageRDF
-
find
Description copied from interface:StorageRDFFind in the default graph.Pattern operation.
- Specified by:
findin interfaceStorageRDF
-
find
Description copied from interface:StorageRDFFind in named graphs: does not look in the default graph.Pattern operation.
- Specified by:
findin interfaceStorageRDF
-
stream
Description copied from interface:StorageRDFFind in the default graph.Pattern operation.
- Specified by:
streamin interfaceStorageRDF
-
stream
Description copied from interface:StorageRDFFind in named graphs: does not look in the default graph.Pattern operation.
- Specified by:
streamin interfaceStorageRDF
-
contains
Description copied from interface:StorageRDFTest whether the default graph contains the triple.Pattern operation.
Equivalent to
find(s,p,o).hasNext().- Specified by:
containsin interfaceStorageRDF
-
contains
Description copied from interface:StorageRDFTest whether any named graph matches the quad.Pattern operation.
Equivalent to
find(g,s,p,o).hasNext().- Specified by:
containsin interfaceStorageRDF
-