Package | Description |
---|---|
org.openrdf.repository.sail |
Repository implementation for local storage backends.
|
org.openrdf.repository.sail.helpers | |
org.openrdf.sail |
RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API
for RDF repositories.
|
org.openrdf.sail.federation | |
org.openrdf.sail.helpers |
Generic utility classes for RDF Sail implementations.
|
org.openrdf.sail.inferencer | |
org.openrdf.sail.inferencer.fc |
Forward-chaining inferencers, implemented as StackableSails.
|
org.openrdf.sail.memory |
An implementation of the RDF SAIL API that uses main memory for storage.
|
org.openrdf.sail.nativerdf |
Native RDF storage backend.
|
org.openrdf.sail.rdbms | |
org.openrdf.sail.rdbms.exceptions | |
org.openrdf.sail.rdbms.iteration | |
org.openrdf.sail.rdbms.mysql | |
org.openrdf.sail.rdbms.postgresql |
Modifier and Type | Method and Description |
---|---|
protected <E> RepositoryResult<E> |
SailRepositoryConnection.createRepositoryResult(CloseableIteration<? extends E,SailException> sailIter)
Wraps a CloseableIteration coming from a Sail in a RepositoryResult
object, applying the required conversions
|
Modifier and Type | Method and Description |
---|---|
protected void |
SailUpdateExecutor.executeAdd(Add add,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeClear(Clear clearExpr,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeCopy(Copy copy,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeCreate(Create create,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeDeleteData(DeleteData deleteDataExpr,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeInsertData(InsertData insertDataExpr,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeLoad(Load load,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeModify(Modify modify,
UpdateContext uc) |
protected void |
SailUpdateExecutor.executeMove(Move move,
UpdateContext uc) |
void |
SailUpdateExecutor.executeUpdate(UpdateExpr updateExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred) |
Modifier and Type | Class and Description |
---|---|
class |
SailLockedException
Indicates that a SAIL cannot be initialised because the configured persisted
location is locked.
|
class |
SailReadOnlyException
Indicates that the current write operation did not succeed because the SAIL
cannot be written to, it can only be read from.
|
class |
UnknownSailTransactionStateException
Indicates that a SAIL's transaction state (active or inactive) cannot be determined.
|
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Resource,SailException> |
SailConnection.getContextIDs()
Returns the set of all unique context identifiers that are used to store
statements.
|
CloseableIteration<? extends Namespace,SailException> |
SailConnection.getNamespaces()
Gets the namespaces relevant to the data contained in this Sail object.
|
CloseableIteration<? extends Statement,SailException> |
SailConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements from the specified contexts that have a specific
subject, predicate and/or object.
|
Modifier and Type | Method and Description |
---|---|
void |
SailConnection.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds a statement to the store.
|
void |
SailConnection.addStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds a statement to the store.
|
void |
SailConnection.begin()
Begins a transaction requiring
SailConnection.commit() or SailConnection.rollback() to
be called to close the transaction. |
void |
SailConnection.clear(Resource... contexts)
Removes all statements from the specified/all contexts.
|
void |
SailConnection.clearNamespaces()
Removes all namespace declarations from the repository.
|
void |
SailConnection.close()
Closes the connection.
|
void |
SailConnection.commit()
Commits any updates that have been performed since the last time
SailConnection.commit() or SailConnection.rollback() was called. |
void |
SailConnection.endUpdate(UpdateContext op)
Indicates that the given
op will not be used in any call
again. |
CloseableIteration<? extends BindingSet,QueryEvaluationException> |
SailConnection.evaluate(TupleExpr tupleExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred)
Evaluates the supplied TupleExpr on the data contained in this Sail
object, using the (optional) dataset and supplied bindings as input
parameters.
|
NotifyingSailConnection |
NotifyingSail.getConnection()
Opens a connection on the Sail which can be used to query and update data.
|
SailConnection |
Sail.getConnection()
Opens a connection on the Sail which can be used to query and update data.
|
CloseableIteration<? extends Resource,SailException> |
SailConnection.getContextIDs()
Returns the set of all unique context identifiers that are used to store
statements.
|
String |
SailConnection.getNamespace(String prefix)
Gets the namespace that is associated with the specified prefix, if any.
|
CloseableIteration<? extends Namespace,SailException> |
SailConnection.getNamespaces()
Gets the namespaces relevant to the data contained in this Sail object.
|
CloseableIteration<? extends Statement,SailException> |
SailConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements from the specified contexts that have a specific
subject, predicate and/or object.
|
void |
Sail.initialize()
Initializes the Sail.
|
boolean |
SailConnection.isOpen()
Checks whether this SailConnection is open.
|
boolean |
Sail.isWritable()
Checks whether this Sail object is writable, i.e.
|
void |
SailConnection.prepare()
Checks for an error state in the active transaction that would force the
transaction to be rolled back.
|
void |
SailConnection.removeNamespace(String prefix)
Removes a namespace declaration by removing the association between a
prefix and a namespace name.
|
void |
SailConnection.removeStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes all statements matching the specified subject, predicate and
object from the repository.
|
void |
SailConnection.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes all statements matching the specified subject, predicate and
object from the repository.
|
void |
SailConnection.rollback()
Rolls back the transaction, discarding any uncommitted changes that have
been made in this SailConnection.
|
void |
SailConnection.setNamespace(String prefix,
String name)
Sets the prefix for a namespace.
|
void |
Sail.shutDown()
Shuts down the Sail, giving it the opportunity to synchronize any stale
data.
|
long |
SailConnection.size(Resource... contexts)
Returns the number of (explicit) statements in the store, or in specific
contexts.
|
void |
SailConnection.startUpdate(UpdateContext op)
Signals the start of an update operation.
|
Modifier and Type | Method and Description |
---|---|
SailConnection |
Federation.getConnection() |
void |
Federation.initialize() |
boolean |
Federation.isWritable() |
void |
Federation.shutDown() |
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Resource,SailException> |
SailConnectionBase.getContextIDs() |
CloseableIteration<? extends Resource,SailException> |
SailConnectionWrapper.getContextIDs() |
protected abstract CloseableIteration<? extends Resource,SailException> |
SailConnectionBase.getContextIDsInternal() |
CloseableIteration<? extends Namespace,SailException> |
SailConnectionBase.getNamespaces() |
CloseableIteration<? extends Namespace,SailException> |
SailConnectionWrapper.getNamespaces() |
protected abstract CloseableIteration<? extends Namespace,SailException> |
SailConnectionBase.getNamespacesInternal() |
CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
CloseableIteration<? extends Statement,SailException> |
SailConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected abstract CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
SailConnectionBase.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionWrapper.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionBase.addStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
The default implementation buffers added statements until the update
operation is complete.
|
void |
SailConnectionWrapper.addStatement(UpdateContext modify,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected abstract void |
SailConnectionBase.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
SailConnectionBase.autoStartTransaction()
Deprecated.
since 2.7.0. Use
SailConnectionBase.verifyIsActive() instead. We should
not automatically start a transaction at the sail level.
Instead, an exception should be thrown when an update is
executed without first starting a transaction. |
void |
SailConnectionBase.begin() |
void |
SailConnectionWrapper.begin() |
void |
SailConnectionBase.clear(Resource... contexts) |
void |
SailConnectionWrapper.clear(Resource... contexts) |
protected abstract void |
SailConnectionBase.clearInternal(Resource... contexts) |
void |
SailConnectionBase.clearNamespaces() |
void |
SailConnectionWrapper.clearNamespaces() |
protected abstract void |
SailConnectionBase.clearNamespacesInternal() |
void |
SailConnectionBase.close() |
void |
SailConnectionWrapper.close() |
protected abstract void |
SailConnectionBase.closeInternal() |
void |
SailConnectionBase.commit() |
void |
SailConnectionWrapper.commit() |
protected abstract void |
SailConnectionBase.commitInternal() |
void |
SailConnectionBase.endUpdate(UpdateContext op) |
void |
SailConnectionWrapper.endUpdate(UpdateContext modify) |
CloseableIteration<? extends BindingSet,QueryEvaluationException> |
SailConnectionBase.evaluate(TupleExpr tupleExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred) |
CloseableIteration<? extends BindingSet,QueryEvaluationException> |
SailConnectionWrapper.evaluate(TupleExpr tupleExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred) |
protected abstract CloseableIteration<? extends BindingSet,QueryEvaluationException> |
SailConnectionBase.evaluateInternal(TupleExpr tupleExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred) |
SailConnection |
SailWrapper.getConnection() |
NotifyingSailConnection |
NotifyingSailWrapper.getConnection() |
SailConnection |
SailBase.getConnection() |
NotifyingSailConnection |
NotifyingSailBase.getConnection() |
protected abstract SailConnection |
SailBase.getConnectionInternal()
Returns a store-specific SailConnection object.
|
protected abstract NotifyingSailConnection |
NotifyingSailBase.getConnectionInternal() |
CloseableIteration<? extends Resource,SailException> |
SailConnectionBase.getContextIDs() |
CloseableIteration<? extends Resource,SailException> |
SailConnectionWrapper.getContextIDs() |
protected abstract CloseableIteration<? extends Resource,SailException> |
SailConnectionBase.getContextIDsInternal() |
protected Lock |
SailConnectionBase.getExclusiveConnectionLock()
Deprecated.
Use
SailConnectionBase.connectionLock directly instead. |
String |
SailConnectionBase.getNamespace(String prefix) |
String |
SailConnectionWrapper.getNamespace(String prefix) |
protected abstract String |
SailConnectionBase.getNamespaceInternal(String prefix) |
CloseableIteration<? extends Namespace,SailException> |
SailConnectionBase.getNamespaces() |
CloseableIteration<? extends Namespace,SailException> |
SailConnectionWrapper.getNamespaces() |
protected abstract CloseableIteration<? extends Namespace,SailException> |
SailConnectionBase.getNamespacesInternal() |
protected Lock |
SailConnectionBase.getSharedConnectionLock()
Deprecated.
Use
SailConnectionBase.connectionLock directly instead. |
CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
CloseableIteration<? extends Statement,SailException> |
SailConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected abstract CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected Lock |
SailConnectionBase.getTransactionLock()
Deprecated.
Use
SailConnectionBase.updateLock directly instead. |
void |
SailWrapper.initialize() |
void |
SailBase.initialize() |
protected void |
SailBase.initializeInternal()
Do store-specific operations to initialize the store.
|
boolean |
SailConnectionBase.isOpen() |
boolean |
SailConnectionWrapper.isOpen() |
boolean |
SailWrapper.isWritable() |
void |
SailConnectionBase.prepare() |
void |
SailConnectionWrapper.prepare() |
void |
SailConnectionBase.removeNamespace(String prefix) |
void |
SailConnectionWrapper.removeNamespace(String prefix) |
protected abstract void |
SailConnectionBase.removeNamespaceInternal(String prefix) |
void |
SailConnectionBase.removeStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
The default implementation buffers removed statements until the update
operation is complete.
|
void |
SailConnectionWrapper.removeStatement(UpdateContext modify,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionBase.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionWrapper.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected abstract void |
SailConnectionBase.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionBase.rollback() |
void |
SailConnectionWrapper.rollback() |
protected abstract void |
SailConnectionBase.rollbackInternal() |
void |
SailConnectionBase.setNamespace(String prefix,
String name) |
void |
SailConnectionWrapper.setNamespace(String prefix,
String name) |
protected abstract void |
SailConnectionBase.setNamespaceInternal(String prefix,
String name) |
void |
SailWrapper.shutDown() |
void |
SailBase.shutDown() |
protected abstract void |
SailBase.shutDownInternal()
Do store-specific operations to ensure proper shutdown of the store.
|
long |
SailConnectionBase.size(Resource... contexts) |
long |
SailConnectionWrapper.size(Resource... contexts) |
long |
SailConnectionWrapper.size(Resource context) |
protected abstract long |
SailConnectionBase.sizeInternal(Resource... contexts) |
protected abstract void |
SailConnectionBase.startTransactionInternal() |
void |
SailConnectionBase.startUpdate(UpdateContext op) |
void |
SailConnectionWrapper.startUpdate(UpdateContext modify) |
protected void |
SailConnectionBase.verifyIsActive()
Verifies if a transaction is currently active.
|
protected void |
SailConnectionBase.verifyIsOpen() |
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Resource,SailException> |
InferencerConnectionWrapper.getContextIDs()
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
CloseableIteration<? extends Statement,SailException> |
InferencerConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
Modifier and Type | Method and Description |
---|---|
boolean |
InferencerConnectionWrapper.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
InferencerConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds an inferred statement to a specific context.
|
void |
InferencerConnectionWrapper.clearInferred(Resource... contexts) |
void |
InferencerConnection.clearInferred(Resource... contexts)
Removes all inferred statements from the specified/all contexts.
|
void |
InferencerConnectionWrapper.commit()
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
CloseableIteration<? extends BindingSet,QueryEvaluationException> |
InferencerConnectionWrapper.evaluate(TupleExpr tupleExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred)
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
void |
InferencerConnectionWrapper.flushUpdates() |
void |
InferencerConnection.flushUpdates()
Flushes any pending updates to be processed and the resulting changes to
be reported to registered
SailConnectionListener s. |
CloseableIteration<? extends Resource,SailException> |
InferencerConnectionWrapper.getContextIDs()
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
CloseableIteration<? extends Statement,SailException> |
InferencerConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
void |
InferencerConnectionWrapper.prepare()
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
boolean |
InferencerConnectionWrapper.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
InferencerConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes an inferred statement from a specific context.
|
long |
InferencerConnectionWrapper.size(Resource... contexts)
Calls
InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped
connection. |
Modifier and Type | Method and Description |
---|---|
org.openrdf.sail.inferencer.fc.ForwardChainingRDFSInferencerConnection |
ForwardChainingRDFSInferencer.getConnection() |
InferencerConnection |
DirectTypeHierarchyInferencer.getConnection() |
InferencerConnection |
CustomGraphQueryInferencer.getConnection() |
void |
ForwardChainingRDFSInferencer.initialize()
Adds axiom statements to the underlying Sail.
|
void |
DirectTypeHierarchyInferencer.initialize() |
void |
CustomGraphQueryInferencer.initialize() |
void |
CustomGraphQueryInferencer.setFields(QueryLanguage language,
String queryText,
String matcherText)
Called in order to set all the fields needed for the inferencer to
function.
|
Constructor and Description |
---|
CustomGraphQueryInferencer(NotifyingSail baseSail,
QueryLanguage language,
String queryText,
String matcherText)
Create a new custom inferencer.
|
CustomGraphQueryInferencer(QueryLanguage language,
String queryText,
String matcherText)
Create a new custom inferencer.
|
Modifier and Type | Method and Description |
---|---|
protected CloseableIteration<? extends Resource,SailException> |
MemoryStoreConnection.getContextIDsInternal() |
protected CloseableIteration<? extends Namespace,SailException> |
MemoryStoreConnection.getNamespacesInternal() |
protected CloseableIteration<? extends Statement,SailException> |
MemoryStoreConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
MemoryStoreConnection.removeIteratorStatements(CloseableIteration<MemStatement,SailException> stIter,
boolean explicit) |
Modifier and Type | Method and Description |
---|---|
boolean |
MemoryStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected Statement |
MemoryStore.addStatement(Resource subj,
URI pred,
Value obj,
Resource context,
boolean explicit) |
protected boolean |
MemoryStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
boolean explicit,
Resource... contexts)
Adds the specified statement to this MemoryStore.
|
protected void |
MemoryStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
MemoryStoreConnection.clearInferred(Resource... contexts) |
protected void |
MemoryStoreConnection.clearInternal(Resource... contexts) |
protected void |
MemoryStoreConnection.clearNamespacesInternal() |
protected void |
MemoryStoreConnection.closeInternal() |
protected void |
MemoryStore.commit() |
protected void |
MemoryStoreConnection.commitInternal() |
protected CloseableIteration<? extends BindingSet,QueryEvaluationException> |
MemoryStoreConnection.evaluateInternal(TupleExpr tupleExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred) |
protected NotifyingSailConnection |
MemoryStore.getConnectionInternal() |
protected CloseableIteration<? extends Resource,SailException> |
MemoryStoreConnection.getContextIDsInternal() |
protected String |
MemoryStoreConnection.getNamespaceInternal(String prefix) |
protected CloseableIteration<? extends Namespace,SailException> |
MemoryStoreConnection.getNamespacesInternal() |
protected CloseableIteration<? extends Statement,SailException> |
MemoryStoreConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected Lock |
MemoryStore.getStatementsReadLock() |
protected Lock |
MemoryStore.getTransactionLock() |
boolean |
MemoryStoreConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected void |
MemoryStore.initializeInternal()
Initializes this repository.
|
boolean |
MemoryStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected boolean |
MemoryStoreConnection.removeIteratorStatements(CloseableIteration<MemStatement,SailException> stIter,
boolean explicit) |
protected void |
MemoryStoreConnection.removeNamespaceInternal(String prefix) |
protected boolean |
MemoryStore.removeStatement(MemStatement st,
boolean explicit) |
protected boolean |
MemoryStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean explicit,
Resource... contexts)
Removes the statements that match the specified pattern of subject,
predicate, object and context.
|
protected void |
MemoryStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
MemoryStore.rollback() |
protected void |
MemoryStoreConnection.rollbackInternal() |
protected void |
MemoryStore.scheduleSyncTask() |
protected void |
MemoryStoreConnection.setNamespaceInternal(String prefix,
String name) |
protected void |
MemoryStore.shutDownInternal() |
protected long |
MemoryStoreConnection.sizeInternal(Resource... contexts) |
protected void |
MemoryStore.startTransaction() |
protected void |
MemoryStoreConnection.startTransactionInternal() |
void |
MemoryStore.sync()
Synchronizes the contents of this repository with the data that is stored
on disk.
|
protected void |
MemoryStore.syncWithLock()
Synchronizes the contents of this repository with the data that is stored
on disk.
|
Modifier and Type | Method and Description |
---|---|
protected CloseableIteration<? extends Resource,SailException> |
NativeStoreConnection.getContextIDsInternal() |
protected CloseableIteration<? extends Namespace,SailException> |
NativeStoreConnection.getNamespacesInternal() |
protected CloseableIteration<? extends Statement,SailException> |
NativeStoreConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
boolean |
NativeStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
NativeStoreConnection.clearInferred(Resource... contexts) |
protected void |
NativeStoreConnection.clearInternal(Resource... contexts) |
protected void |
NativeStoreConnection.clearNamespacesInternal() |
protected void |
NativeStoreConnection.commitInternal() |
protected CloseableIteration<? extends BindingSet,QueryEvaluationException> |
NativeStoreConnection.evaluateInternal(TupleExpr tupleExpr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred) |
protected NotifyingSailConnection |
LimitedSizeNativeStore.getConnectionInternal() |
protected NotifyingSailConnection |
NativeStore.getConnectionInternal() |
protected CloseableIteration<? extends Resource,SailException> |
NativeStoreConnection.getContextIDsInternal() |
protected String |
NativeStoreConnection.getNamespaceInternal(String prefix) |
protected CloseableIteration<? extends Namespace,SailException> |
NativeStoreConnection.getNamespacesInternal() |
protected CloseableIteration<? extends Statement,SailException> |
NativeStoreConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected Lock |
NativeStore.getTransactionLock() |
protected void |
NativeStore.initializeInternal()
Initializes this NativeStore.
|
boolean |
NativeStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.removeNamespaceInternal(String prefix) |
protected void |
NativeStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.replaceValues(TupleExpr tupleExpr) |
protected void |
NativeStoreConnection.rollbackInternal() |
protected void |
NativeStoreConnection.setNamespaceInternal(String prefix,
String name) |
protected void |
NativeStore.shutDownInternal() |
protected long |
NativeStoreConnection.sizeInternal(Resource... contexts) |
protected void |
NativeStoreConnection.startTransactionInternal() |
Modifier and Type | Method and Description |
---|---|
protected CloseableIteration<? extends Namespace,SailException> |
RdbmsConnection.getNamespacesInternal() |
protected CloseableIteration<? extends Statement,SailException> |
RdbmsConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
RdbmsTripleRepository.add(RdbmsStatement st) |
protected void |
RdbmsConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
RdbmsConnection.clearInternal(Resource... contexts) |
protected void |
RdbmsConnection.clearNamespacesInternal() |
protected void |
RdbmsConnection.closeInternal() |
protected void |
RdbmsConnection.commitInternal() |
SailConnection |
RdbmsConnectionFactory.createConnection() |
protected Lock |
RdbmsConnectionFactory.createDatabaseLock() |
protected CloseableIteration<BindingSet,QueryEvaluationException> |
RdbmsConnection.evaluateInternal(TupleExpr expr,
Dataset dataset,
BindingSet bindings,
boolean includeInferred) |
protected SailConnection |
RdbmsStore.getConnectionInternal()
Deprecated.
|
protected RdbmsResourceIteration |
RdbmsConnection.getContextIDsInternal() |
protected String |
RdbmsConnection.getNamespaceInternal(String prefix) |
protected CloseableIteration<? extends Namespace,SailException> |
RdbmsConnection.getNamespacesInternal() |
protected CloseableIteration<? extends Statement,SailException> |
RdbmsConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
void |
RdbmsConnectionFactory.init() |
protected void |
RdbmsStore.initializeInternal()
Deprecated.
|
boolean |
RdbmsConnectionFactory.isWritable() |
boolean |
RdbmsStore.isWritable()
Deprecated.
|
protected void |
RdbmsConnection.removeNamespaceInternal(String prefix) |
protected void |
RdbmsConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
RdbmsTripleRepository.rollback() |
protected void |
RdbmsConnection.rollbackInternal() |
void |
RdbmsStore.setIndexed(boolean indexed)
Deprecated.
|
protected void |
RdbmsConnection.setNamespaceInternal(String prefix,
String name) |
void |
RdbmsConnectionFactory.setTriplesIndexed(boolean triplesIndexed) |
void |
RdbmsConnectionFactory.shutDown() |
protected void |
RdbmsStore.shutDownInternal()
Deprecated.
|
long |
RdbmsTripleRepository.size(RdbmsResource... ctxs) |
protected long |
RdbmsConnection.sizeInternal(Resource... contexts) |
protected void |
RdbmsConnection.startTransactionInternal() |
Modifier and Type | Class and Description |
---|---|
class |
RdbmsException
SailExcetion from an RDBMS store.
|
Modifier and Type | Method and Description |
---|---|
void |
NamespaceIteration.close() |
boolean |
EmptyRdbmsResourceIteration.hasNext() |
boolean |
EmptyRdbmsStatementIteration.hasNext() |
Modifier and Type | Method and Description |
---|---|
void |
MySqlStore.initialize()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
PgSqlStore.initialize()
Deprecated.
|
Copyright © 2001-2013 Aduna. All Rights Reserved.