Modifier and Type | Method and Description |
---|---|
static void |
OpenRDFUtil.verifyContextNotNull(Resource... contexts)
Verifies that the supplied contexts parameter is not null,
throwing an
IllegalArgumentException if it is. |
Modifier and Type | Method and Description |
---|---|
void |
SesameSession.addData(InputStream contents,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
SesameSession.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
SesameSession.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
SesameSession.removeData(InputStream contents,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
long |
SesameSession.size(Resource... contexts) |
protected void |
SesameSession.upload(org.apache.http.HttpEntity reqEntity,
String baseURI,
boolean overwrite,
boolean preserveNodeIds,
Protocol.Action action,
Resource... contexts) |
protected void |
SesameSession.upload(InputStream contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
boolean preserveNodeIds,
Protocol.Action action,
Resource... contexts) |
void |
SesameSession.upload(InputStream contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
boolean preserveNodeIds,
Resource... contexts) |
protected void |
SesameSession.upload(Reader contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
boolean preserveNodeIds,
Protocol.Action action,
Resource... contexts) |
void |
SesameSession.upload(Reader contents,
String baseURI,
RDFFormat dataFormat,
boolean overwrite,
boolean preserveNodeIds,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
static Resource |
Protocol.decodeContext(String encodedValue,
ValueFactory valueFactory)
Decode a previously encoded context Resource.
|
static Resource[] |
Protocol.decodeContexts(String[] encodedValues,
ValueFactory valueFactory)
Decode previously encoded contexts.
|
static Resource |
Protocol.decodeResource(String encodedValue,
ValueFactory valueFactory)
Decode a previously encoded Resource.
|
Modifier and Type | Method and Description |
---|---|
static String |
Protocol.encodeContext(Resource context)
Encodes a context resource for use in a URL.
|
static String[] |
Protocol.encodeContexts(Resource... contexts)
Encode context resources for use in a URL.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TransactionWriter.serialize(Resource[] contexts,
XMLWriter xmlWriter) |
protected void |
TransactionWriter.serialize(Resource resource,
XMLWriter xmlWriter) |
Modifier and Type | Field and Description |
---|---|
protected Resource[] |
ContextOperation.contexts |
Modifier and Type | Method and Description |
---|---|
Resource[] |
ContextOperation.getContexts() |
Resource |
StatementOperation.getSubject() |
Modifier and Type | Method and Description |
---|---|
void |
ContextOperation.setContexts(Resource... contexts) |
void |
StatementOperation.setSubject(Resource subject) |
Constructor and Description |
---|
AddStatementOperation(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Create an AddStatementOperation.
|
AddStatementOperation(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Create an AddStatementOperation.
|
ClearOperation(Resource... contexts) |
ContextOperation(Resource... contexts) |
RemoveStatementsOperation(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Creates a RemoveStatementsOperation.
|
RemoveStatementsOperation(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Creates a RemoveStatementsOperation.
|
StatementOperation(Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
static Resource[] |
ProtocolUtil.parseContextParam(javax.servlet.http.HttpServletRequest request,
String paramName,
ValueFactory vf) |
static Resource |
ProtocolUtil.parseResourceParam(javax.servlet.http.HttpServletRequest request,
String paramName,
ValueFactory vf) |
Modifier and Type | Interface and Description |
---|---|
interface |
BNode
A blank node (aka bnode, aka anonymous node).
|
interface |
URI
A URI.
|
Modifier and Type | Method and Description |
---|---|
Resource |
Statement.getContext()
Gets the context of this statement.
|
Resource |
Statement.getSubject()
Gets the subject of this statement.
|
Resource |
Model.objectResource()
Utility method that casts the return value of
Model.objectValue() to a
Resource, or throws a ModelUtilException if that value is not a Resource. |
Resource |
Model.subjectResource()
Gets the subject of the statement(s).
|
Modifier and Type | Method and Description |
---|---|
Set<Resource> |
Model.contexts()
Returns a
Set view of the contexts contained in this model. |
Set<Resource> |
Model.subjects()
Returns a
Set view of the subjects contained in this model. |
Modifier and Type | Method and Description |
---|---|
boolean |
Model.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the model.
|
boolean |
Model.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the model.
|
boolean |
Graph.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the graph.
|
boolean |
Graph.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds one or more statements to the graph.
|
boolean |
Model.clear(Resource... context)
Removes statements with the specified context exist in this model.
|
boolean |
Model.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Determines if statements with the specified subject, predicate, object and
(optionally) context exist in this model.
|
boolean |
Model.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Determines if statements with the specified subject, predicate, object and
(optionally) context exist in this model.
|
Statement |
ValueFactory.createStatement(Resource subject,
URI predicate,
Value object)
Creates a new statement with the supplied subject, predicate and object.
|
Statement |
ValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
Creates a new statement with the supplied subject, predicate and object
and associated context.
|
Model |
Model.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Returns a view of the statements with the specified subject, predicate,
object and (optionally) context.
|
Model |
Model.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Returns a view of the statements with the specified subject, predicate,
object and (optionally) context.
|
Iterator<Statement> |
Graph.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
The preferred alternative is
Model.filter(org.openrdf.model.Resource, org.openrdf.model.URI, org.openrdf.model.Value, org.openrdf.model.Resource...) .iterator(). |
Iterator<Statement> |
Graph.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
The preferred alternative is
Model.filter(org.openrdf.model.Resource, org.openrdf.model.URI, org.openrdf.model.Value, org.openrdf.model.Resource...) .iterator(). |
boolean |
Model.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes statements with the specified subject, predicate, object and
(optionally) context exist in this model.
|
boolean |
Model.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes statements with the specified subject, predicate, object and
(optionally) context exist in this model.
|
Modifier and Type | Class and Description |
---|---|
class |
BNodeImpl
An implementation of the
BNode interface. |
class |
URIImpl
The default implementation of the
URI interface. |
Modifier and Type | Field and Description |
---|---|
protected Resource[] |
FilteredModel.contexts |
protected Resource |
FilteredModel.subj |
Modifier and Type | Method and Description |
---|---|
Resource |
StatementImpl.getContext() |
Resource |
ContextStatementImpl.getContext() |
Resource |
StatementImpl.getSubject() |
Resource |
AbstractModel.objectResource() |
Resource |
AbstractModel.subjectResource() |
Modifier and Type | Method and Description |
---|---|
Set<Resource> |
AbstractModel.contexts() |
Set<Resource> |
AbstractModel.subjects() |
Modifier and Type | Method and Description |
---|---|
boolean |
GraphImpl.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
GraphImpl.add(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
FilteredModel.add(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
FilteredModel.add(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
LinkedHashModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
EmptyModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
EmptyModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
AbstractModel.clear(Resource... contexts) |
boolean |
FilteredModel.contains(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
FilteredModel.contains(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
LinkedHashModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
EmptyModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
EmptyModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Statement |
ValueFactoryImpl.createStatement(Resource subject,
URI predicate,
Value object) |
Statement |
ValueFactoryImpl.createStatement(Resource subject,
URI predicate,
Value object,
Resource context) |
Model |
FilteredModel.filter(Resource s,
URI p,
Value o,
Resource... c) |
Model |
FilteredModel.filter(Resource s,
URI p,
Value o,
Resource... c) |
Model |
LinkedHashModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
LinkedHashModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
EmptyModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
EmptyModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
TreeModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
TreeModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Iterator<Statement> |
GraphImpl.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
Iterator<Statement> |
GraphImpl.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
Iterator<Statement> |
AbstractModel.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
Iterator<Statement> |
AbstractModel.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
|
boolean |
FilteredModel.remove(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
FilteredModel.remove(Resource s,
URI p,
Value o,
Resource... c) |
boolean |
LinkedHashModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
LinkedHashModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
EmptyModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
EmptyModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
TreeModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected abstract void |
FilteredModel.removeFilteredTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Called by aggregate sets when a term has been removed from a term
iterator.
|
protected abstract void |
FilteredModel.removeFilteredTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Called by aggregate sets when a term has been removed from a term
iterator.
|
void |
FilteredModel.removeTermIteration(Iterator<Statement> iter,
Resource s,
URI p,
Value o,
Resource... c) |
void |
FilteredModel.removeTermIteration(Iterator<Statement> iter,
Resource s,
URI p,
Value o,
Resource... c) |
void |
EmptyModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
EmptyModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
TreeModel.removeTermIteration(Iterator<Statement> iterator,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
TreeModel.removeTermIteration(Iterator<Statement> iterator,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
abstract void |
AbstractModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Called by aggregate sets when a term has been removed from a term
iterator.
|
abstract void |
AbstractModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Called by aggregate sets when a term has been removed from a term
iterator.
|
void |
LinkedHashModel.removeTermIteration(Iterator iterator,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
LinkedHashModel.removeTermIteration(Iterator iterator,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Constructor and Description |
---|
ContextStatementImpl(Resource subject,
URI predicate,
Value object,
Resource context)
Creates a new Statement with the supplied subject, predicate and object
for the specified associated context.
|
FilteredModel(AbstractModel model,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
FilteredModel(AbstractModel model,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
StatementImpl(Resource subject,
URI predicate,
Value object)
Creates a new Statement with the supplied subject, predicate and object.
|
Modifier and Type | Method and Description |
---|---|
static Resource |
Models.anyObjectResource(Model m)
Retrieves any object Resource value from the given model.
|
static Resource |
Models.anySubject(Model m)
Retrieves any subject from the given model.
|
static Resource |
GraphUtil.getOptionalObjectResource(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectResource() instead. |
static Resource |
GraphUtil.getOptionalSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjectResource() instead. |
static Resource |
GraphUtil.getUniqueObjectResource(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectResource() instead. |
static Resource |
GraphUtil.getUniqueSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjectResource() instead. |
Modifier and Type | Method and Description |
---|---|
static Iterator<Resource> |
GraphUtil.getSubjectIterator(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjects() instead. |
static Set<Resource> |
GraphUtil.getSubjects(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjects() instead. |
Modifier and Type | Method and Description |
---|---|
static Iterator<Value> |
GraphUtil.getObjectIterator(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objects() instead. |
static Iterator<Value> |
GraphUtil.getObjectIterator(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objects() instead. |
static Set<Value> |
GraphUtil.getObjects(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objects() instead. |
static Set<Value> |
GraphUtil.getObjects(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objects() instead. |
static Value |
GraphUtil.getOptionalObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectValue() instead. |
static Value |
GraphUtil.getOptionalObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectValue() instead. |
static Literal |
GraphUtil.getOptionalObjectLiteral(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectLiteral() instead. |
static Resource |
GraphUtil.getOptionalObjectResource(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectResource() instead. |
static URI |
GraphUtil.getOptionalObjectURI(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectURI() instead. |
static Resource |
GraphUtil.getOptionalSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjectResource() instead. |
static URI |
GraphUtil.getOptionalSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjectURI() instead. |
static Iterator<Resource> |
GraphUtil.getSubjectIterator(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjects() instead. |
static Set<Resource> |
GraphUtil.getSubjects(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjects() instead. |
static Value |
GraphUtil.getUniqueObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectValue() instead. |
static Value |
GraphUtil.getUniqueObject(Graph graph,
Resource subj,
URI pred,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectValue() instead. |
static Literal |
GraphUtil.getUniqueObjectLiteral(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectLiteral() instead. |
static Resource |
GraphUtil.getUniqueObjectResource(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectResource() instead. |
static URI |
GraphUtil.getUniqueObjectURI(Graph graph,
Resource subj,
URI pred)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.objectURI() instead. |
static Resource |
GraphUtil.getUniqueSubject(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjectResource() instead. |
static URI |
GraphUtil.getUniqueSubjectURI(Graph graph,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.filter(Resource, URI, Value, Resource...) and
Model.subjectURI() instead. |
static void |
GraphUtil.remove(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.remove(Resource, URI, Value, Resource...)
instead. |
static void |
GraphUtil.remove(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Model.remove(Resource, URI, Value, Resource...)
instead. |
static Model |
Models.setProperty(Model m,
Resource subject,
URI property,
Value value,
Resource... contexts)
Sets the property value for the given subject to the given object value,
replacing any existing value(s) for the subject's property.
|
static Model |
Models.setProperty(Model m,
Resource subject,
URI property,
Value value,
Resource... contexts)
Sets the property value for the given subject to the given object value,
replacing any existing value(s) for the subject's property.
|
static void |
GraphUtil.setUniqueObject(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Models.setProperty(Model, Resource, URI, Value, Resource...)
instead. |
static void |
GraphUtil.setUniqueObject(Graph graph,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Deprecated.
since 2.8.0. Use
Models.setProperty(Model, Resource, URI, Value, Resource...)
instead. |
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Statement,QueryEvaluationException> |
TripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object.
|
CloseableIteration<? extends Statement,QueryEvaluationException> |
TripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object.
|
Modifier and Type | Method and Description |
---|---|
protected void |
ComplexSPARQLQueryTest.loadTestData(String dataFile,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
protected void |
SPARQLResultsCSVWriter.writeResource(Resource res) |
Modifier and Type | Method and Description |
---|---|
protected void |
SPARQLResultsTSVWriter.writeResource(Resource res) |
Modifier and Type | Method and Description |
---|---|
static QueryBuilder<ParsedGraphQuery> |
QueryBuilderFactory.describe(Resource... theValues)
Create a QueryBuilder for creating a describe query
|
static QueryBuilder<ParsedGraphQuery> |
QueryBuilderFactory.describe(String[] theVars,
Resource... theValues)
Create a QueryBuilder for creating a describe query
|
Modifier and Type | Field and Description |
---|---|
protected Resource |
RepositoryConnectionTest.alexander |
protected Resource |
RepositoryTest.alexander |
protected Resource |
RepositoryConnectionTest.alice |
protected Resource |
RepositoryTest.alice |
protected Resource |
RepositoryConnectionTest.bob |
protected Resource |
RepositoryTest.bob |
Modifier and Type | Method and Description |
---|---|
RepositoryResult<Resource> |
RepositoryConnection.getContextIDs()
Gets all resources that are used as content identifiers.
|
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnection.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from the specified file to a specific contexts in the
repository.
|
void |
RepositoryConnection.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from an InputStream to the repository, optionally to one or
more named contexts.
|
void |
RepositoryConnection.add(Iterable<? extends Statement> statements,
Resource... contexts)
Adds the supplied statements to this repository, optionally to one or more
named contexts.
|
<E extends Exception> |
RepositoryConnection.add(Iteration<? extends Statement,E> statements,
Resource... contexts)
Adds the supplied statements to this repository, optionally to one or more
named contexts.
|
void |
RepositoryConnection.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from a Reader to the repository, optionally to one or more
named contexts.
|
void |
RepositoryConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Adds a statement with the specified subject, predicate and object to this
repository, optionally to one or more named contexts.
|
void |
RepositoryConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Adds a statement with the specified subject, predicate and object to this
repository, optionally to one or more named contexts.
|
void |
RepositoryConnection.add(Statement st,
Resource... contexts)
Adds the supplied statement to this repository, optionally to one or more
named contexts.
|
void |
RepositoryConnection.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds the RDF data that can be found at the specified URL to the
repository, optionally to one or more named contexts.
|
void |
RepositoryConnection.clear(Resource... contexts)
Removes all statements from a specific contexts in the repository.
|
void |
RepositoryConnection.export(RDFHandler handler,
Resource... contexts)
Exports all explicit statements in the specified contexts to the supplied
RDFHandler.
|
void |
RepositoryConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object
from the repository, optionally from the specified contexts.
|
void |
RepositoryConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object
from the repository, optionally from the specified contexts.
|
RepositoryResult<Statement> |
RepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from
the repository.
|
RepositoryResult<Statement> |
RepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from
the repository.
|
boolean |
RepositoryConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Checks whether the repository contains statements with a specific subject,
predicate and/or object, optionally in the specified contexts.
|
boolean |
RepositoryConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Checks whether the repository contains statements with a specific subject,
predicate and/or object, optionally in the specified contexts.
|
boolean |
RepositoryConnection.hasStatement(Statement st,
boolean includeInferred,
Resource... contexts)
Checks whether the repository contains the specified statement, optionally
in the specified contexts.
|
void |
RepositoryConnection.remove(Iterable<? extends Statement> statements,
Resource... contexts)
Removes the supplied statements from the specified contexts in this
repository.
|
<E extends Exception> |
RepositoryConnection.remove(Iteration<? extends Statement,E> statements,
Resource... contexts)
Removes the supplied statements from a specific context in this
repository, ignoring any context information carried by the statements
themselves.
|
void |
RepositoryConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Removes the statement(s) with the specified subject, predicate and object
from the repository, optionally restricted to the specified contexts.
|
void |
RepositoryConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Removes the statement(s) with the specified subject, predicate and object
from the repository, optionally restricted to the specified contexts.
|
void |
RepositoryConnection.remove(Statement st,
Resource... contexts)
Removes the supplied statement from the specified contexts in the
repository.
|
long |
RepositoryConnection.size(Resource... contexts)
Returns the number of (explicit) statements that are in the specified
contexts in this repository.
|
Modifier and Type | Method and Description |
---|---|
RepositoryResult<Resource> |
RepositoryConnectionWrapper.getContextIDs() |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionBase.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
RepositoryConnectionBase.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
RepositoryConnectionBase.add(Iterable<? extends Statement> statements,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(Iterable<? extends Statement> statements,
Resource... contexts) |
<E extends Exception> |
RepositoryConnectionBase.add(Iteration<? extends Statement,E> statements,
Resource... contexts) |
<E extends Exception> |
RepositoryConnectionWrapper.add(Iteration<? extends Statement,E> statementIter,
Resource... contexts) |
void |
RepositoryConnectionBase.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
RepositoryConnectionBase.add(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionBase.add(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionBase.add(Statement st,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(Statement st,
Resource... contexts) |
void |
RepositoryConnectionBase.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
RepositoryConnectionWrapper.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
protected abstract void |
RepositoryConnectionBase.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected abstract void |
RepositoryConnectionBase.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionBase.addWithoutCommit(Statement st,
Resource... contexts) |
void |
RepositoryConnectionBase.clear(Resource... contexts) |
void |
RepositoryConnectionWrapper.clear(Resource... contexts) |
void |
RepositoryConnectionBase.export(RDFHandler handler,
Resource... contexts) |
void |
RepositoryConnectionWrapper.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
RepositoryConnectionWrapper.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
RepositoryResult<Statement> |
RepositoryConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
RepositoryResult<Statement> |
RepositoryConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
RepositoryConnectionBase.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
RepositoryConnectionBase.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
RepositoryConnectionWrapper.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
RepositoryConnectionWrapper.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
RepositoryConnectionBase.hasStatement(Statement st,
boolean includeInferred,
Resource... contexts) |
boolean |
RepositoryConnectionWrapper.hasStatement(Statement st,
boolean includeInferred,
Resource... contexts) |
void |
RepositoryConnectionBase.remove(Iterable<? extends Statement> statements,
Resource... contexts) |
void |
RepositoryConnectionWrapper.remove(Iterable<? extends Statement> statements,
Resource... contexts) |
<E extends Exception> |
RepositoryConnectionBase.remove(Iteration<? extends Statement,E> statements,
Resource... contexts) |
<E extends Exception> |
RepositoryConnectionWrapper.remove(Iteration<? extends Statement,E> statementIter,
Resource... contexts) |
void |
RepositoryConnectionBase.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionBase.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionWrapper.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionWrapper.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionBase.remove(Statement st,
Resource... contexts) |
void |
RepositoryConnectionWrapper.remove(Statement st,
Resource... contexts) |
protected abstract void |
RepositoryConnectionBase.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected abstract void |
RepositoryConnectionBase.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
RepositoryConnectionBase.removeWithoutCommit(Statement st,
Resource... contexts) |
long |
RepositoryConnectionWrapper.size(Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
Resource |
RepositoryImplConfigBase.export(Graph graph) |
Resource |
DelegatingRepositoryImplConfigBase.export(Graph graph) |
Resource |
RepositoryImplConfig.export(Graph graph) |
static Resource |
RepositoryConfigUtil.getContext(RepositoryConnection con,
String repositoryID) |
Modifier and Type | Method and Description |
---|---|
static RepositoryImplConfig |
RepositoryImplConfigBase.create(Graph graph,
Resource implNode) |
static RepositoryConfig |
RepositoryConfig.create(Graph graph,
Resource repositoryNode)
Creates a new RepositoryConfig object and initializes it by
supplying the graph and repositoryNode to its
parse method. |
void |
RepositoryImplConfigBase.parse(Graph graph,
Resource implNode) |
void |
RepositoryConfig.parse(Graph graph,
Resource repositoryNode) |
void |
DelegatingRepositoryImplConfigBase.parse(Graph graph,
Resource implNode) |
void |
RepositoryImplConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
void |
ContextAwareConnection.add(File file,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.add(InputStream in,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.add(Iterable<? extends Statement> statements,
Resource... contexts) |
<E extends Exception> |
ContextAwareConnection.add(Iteration<? extends Statement,E> statementIter,
Resource... contexts) |
void |
ContextAwareConnection.add(Reader reader,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
ContextAwareConnection.add(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
ContextAwareConnection.add(Statement st,
Resource... contexts) |
void |
ContextAwareConnection.add(URL url,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
ContextAwareConnection.clear(Resource... contexts) |
void |
ContextAwareConnection.export(RDFHandler handler,
Resource... contexts) |
void |
ContextAwareConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
ContextAwareConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
ContextAwareConnection.exportStatements(Resource subj,
URI pred,
Value obj,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object
from the repository, optionally from the specified contexts.
|
void |
ContextAwareConnection.exportStatements(Resource subj,
URI pred,
Value obj,
RDFHandler handler,
Resource... contexts)
Exports all statements with a specific subject, predicate and/or object
from the repository, optionally from the specified contexts.
|
RepositoryResult<Statement> |
ContextAwareConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
RepositoryResult<Statement> |
ContextAwareConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
RepositoryResult<Statement> |
ContextAwareConnection.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from
the repository.
|
RepositoryResult<Statement> |
ContextAwareConnection.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements with a specific subject, predicate and/or object from
the repository.
|
boolean |
ContextAwareConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
ContextAwareConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
ContextAwareConnection.hasStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Checks whether the repository contains statements with a specific subject,
predicate and/or object, optionally in the specified contexts.
|
boolean |
ContextAwareConnection.hasStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Checks whether the repository contains statements with a specific subject,
predicate and/or object, optionally in the specified contexts.
|
boolean |
ContextAwareConnection.hasStatement(Statement st,
boolean includeInferred,
Resource... contexts) |
boolean |
ContextAwareConnection.hasStatement(Statement st,
Resource... contexts)
Checks whether the repository contains the specified statement, optionally
in the specified contexts.
|
void |
ContextAwareConnection.remove(Iterable<? extends Statement> statements,
Resource... contexts) |
<E extends Exception> |
ContextAwareConnection.remove(Iteration<? extends Statement,E> statementIter,
Resource... contexts)
Removes the supplied statements from a specific context in this
repository, ignoring any context information carried by the statements
themselves.
|
void |
ContextAwareConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Removes the statement with the specified subject, predicate and object
from the repository, optionally restricted to the specified contexts.
|
void |
ContextAwareConnection.remove(Resource subject,
URI predicate,
Value object,
Resource... contexts)
Removes the statement with the specified subject, predicate and object
from the repository, optionally restricted to the specified contexts.
|
void |
ContextAwareConnection.remove(Statement st,
Resource... contexts)
Removes the supplied statement from the specified contexts in the
repository.
|
protected void |
ContextAwareConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
ContextAwareConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
long |
ContextAwareConnection.size(Resource... contexts)
Returns the number of (explicit) statements that are in the specified
contexts in this repository.
|
Modifier and Type | Method and Description |
---|---|
Resource |
ContextAwareConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
ContextAwareConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptor.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptor.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListener.clear(RepositoryConnection conn,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptor.clear(RepositoryConnection conn,
Resource... contexts) |
void |
RepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptor.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptor.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
RepositoryConnectionListenerAdapter.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListenerAdapter.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptorAdapter.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptorAdapter.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
NotifyingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
NotifyingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
InterceptingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
InterceptingRepositoryConnectionWrapper.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListenerAdapter.clear(RepositoryConnection conn,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptorAdapter.clear(RepositoryConnection conn,
Resource... contexts) |
void |
NotifyingRepositoryConnectionWrapper.clear(Resource... contexts) |
void |
InterceptingRepositoryConnectionWrapper.clear(Resource... contexts) |
void |
RepositoryConnectionListenerAdapter.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
RepositoryConnectionListenerAdapter.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptorAdapter.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
boolean |
RepositoryConnectionInterceptorAdapter.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
NotifyingRepositoryConnectionWrapper.removeWithoutCommit(Resource subj,
URI pred,
Value obj,
Resource... ctx) |
void |
NotifyingRepositoryConnectionWrapper.removeWithoutCommit(Resource subj,
URI pred,
Value obj,
Resource... ctx) |
void |
InterceptingRepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
InterceptingRepositoryConnectionWrapper.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
void |
DebugRepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
DebugRepositoryConnectionListener.add(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
DebugRepositoryConnectionListener.clear(RepositoryConnection conn,
Resource... contexts) |
void |
DebugRepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
DebugRepositoryConnectionListener.remove(RepositoryConnection conn,
Resource subject,
URI predicate,
Value object,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
Resource |
HTTPRepositoryConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
HTTPRepositoryConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
protected long |
SailIsolationLevelTest.count(RepositoryConnection con,
Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected long |
SailIsolationLevelTest.count(RepositoryConnection con,
Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
RepositoryResult<Resource> |
SailRepositoryConnection.getContextIDs() |
Modifier and Type | Method and Description |
---|---|
protected void |
SailRepositoryConnection.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
SailRepositoryConnection.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
SailRepositoryConnection.clear(Resource... contexts) |
void |
SailRepositoryConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
SailRepositoryConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
RepositoryResult<Statement> |
SailRepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
RepositoryResult<Statement> |
SailRepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
SailRepositoryConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
SailRepositoryConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected void |
SailRepositoryConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
SailRepositoryConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
long |
SailRepositoryConnection.size(Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
Resource |
SailRepositoryConfig.export(Graph graph) |
Resource |
ProxyRepositoryConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
SailRepositoryConfig.parse(Graph graph,
Resource repImplNode) |
void |
ProxyRepositoryConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
Resource[] |
RDFSailInserter.getContexts()
Gets the contexts that this RDFInserter enforces upon all statements that
are reported to it (in case enforcesContext() returns
true).
|
protected Resource |
SPARQLUpdateDataBlockParser.parseImplicitBlank() |
Modifier and Type | Method and Description |
---|---|
void |
RDFSailInserter.enforceContext(Resource... contexts)
Enforces the supplied contexts upon all statements that are reported to
this RDFInserter.
|
Modifier and Type | Method and Description |
---|---|
RepositoryResult<Resource> |
SPARQLConnection.getContextIDs() |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLConnection.add(File file,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
SPARQLConnection.add(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
SPARQLConnection.add(Iterable<? extends Statement> statements,
Resource... contexts) |
void |
SPARQLConnection.add(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
void |
SPARQLConnection.add(Statement st,
Resource... contexts) |
void |
SPARQLConnection.add(URL url,
String baseURI,
RDFFormat dataFormat,
Resource... contexts) |
protected void |
SPARQLConnection.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
SPARQLConnection.addWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
void |
SPARQLConnection.clear(Resource... contexts) |
void |
SPARQLConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
void |
SPARQLConnection.exportStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
RDFHandler handler,
Resource... contexts) |
RepositoryResult<Statement> |
SPARQLConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
RepositoryResult<Statement> |
SPARQLConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
SPARQLConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
boolean |
SPARQLConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
void |
SPARQLConnection.remove(Iterable<? extends Statement> statements,
Resource... contexts) |
void |
SPARQLConnection.remove(Statement st,
Resource... contexts) |
protected void |
SPARQLConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
protected void |
SPARQLConnection.removeWithoutCommit(Resource subject,
URI predicate,
Value object,
Resource... contexts) |
long |
SPARQLConnection.size(Resource... contexts) |
protected Iteration<Statement,QueryEvaluationException> |
SPARQLConnection.toStatementIteration(TupleQueryResult iter,
Resource subj,
URI pred,
Value obj)
Converts a
TupleQueryResult resulting from the SPARQLConnection.EVERYTHING_WITH_GRAPH
to a statement by using the respective values from the BindingSet or (if
provided) the ones from the arguments. |
Modifier and Type | Method and Description |
---|---|
Resource |
SPARQLRepositoryConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
SPARQLRepositoryConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Field and Description |
---|---|
protected Resource[] |
AbstractRDFInserter.contexts
The contexts to add the statements to.
|
Modifier and Type | Method and Description |
---|---|
Resource |
RDFRemover.getContext()
Gets the context identifier that this RDFRemover enforces upon all
statements that are reported to it (in case enforcesContext()
returns true).
|
Resource[] |
AbstractRDFInserter.getContexts()
Gets the contexts that this RDFInserter enforces upon all statements that
are reported to it (in case enforcesContext() returns
true).
|
Modifier and Type | Method and Description |
---|---|
protected abstract void |
AbstractRDFInserter.addStatement(Resource subj,
URI pred,
Value obj,
Resource ctxt) |
protected void |
RDFInserter.addStatement(Resource subj,
URI pred,
Value obj,
Resource ctxt) |
void |
AbstractRDFInserter.enforceContext(Resource... contexts)
Enforces the supplied contexts upon all statements that are reported to
this RDFInserter.
|
void |
RDFRemover.enforceContext(Resource context)
Enforces the supplied context upon all statements that are reported to
this RDFRemover.
|
Modifier and Type | Field and Description |
---|---|
protected Resource |
EarlReport.asserterNode |
protected Resource |
EarlReport.projectNode |
Modifier and Type | Method and Description |
---|---|
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
Resource... contexts)
Adds RDF data from an
InputStream to a Model , optionally
to one or more named contexts. |
static Model |
Rio.parse(InputStream in,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
Adds RDF data from an
InputStream to a Model , optionally
to one or more named contexts. |
static Model |
Rio.parse(Reader reader,
String baseURI,
RDFFormat dataFormat,
ParserConfig settings,
ValueFactory valueFactory,
ParseErrorListener errors,
Resource... contexts)
|
static Model |
Rio.parse(Reader reader,
String baseURI,
RDFFormat dataFormat,
Resource... contexts)
|
Modifier and Type | Method and Description |
---|---|
protected Statement |
RDFParserBase.createStatement(Resource subj,
URI pred,
Value obj)
Creates a new
Statement object with the supplied components. |
protected Statement |
RDFParserBase.createStatement(Resource subj,
URI pred,
Value obj,
Resource context)
Creates a new
Statement object with the supplied components. |
Constructor and Description |
---|
ContextStatementCollector(Collection<Statement> statements,
Map<String,String> namespaces,
ValueFactory vf,
Resource... contexts)
Creates a new StatementCollector that stores reported statements and
namespaces in the supplied containers.
|
ContextStatementCollector(Collection<Statement> statements,
ValueFactory vf,
Resource... contexts)
Creates a new StatementCollector that stores reported statements in the
supplied collection and that uses a new LinkedHashMap to store the
reported namespaces.
|
ContextStatementCollector(ValueFactory vf,
Resource... contexts)
Creates a new StatementCollector that uses a new ArrayList to store the
reported statements and a new LinkedHashMap to store the reported
namespaces.
|
Modifier and Type | Field and Description |
---|---|
protected Resource |
NQuadsParser.context |
Modifier and Type | Field and Description |
---|---|
protected Resource |
NTriplesParser.subject |
Modifier and Type | Method and Description |
---|---|
static Resource |
NTriplesUtil.parseResource(String nTriplesResource,
ValueFactory valueFactory)
Parses an N-Triples resource, creates an object for it using the supplied
ValueFactory and returns this object.
|
Modifier and Type | Method and Description |
---|---|
static void |
NTriplesUtil.append(Resource resource,
Appendable appendable) |
static String |
NTriplesUtil.toNTriplesString(Resource resource)
Creates an N-Triples string for the supplied resource.
|
Modifier and Type | Method and Description |
---|---|
static String |
RDFJSONWriter.resourceToString(Resource uriOrBnode)
Returns the correct syntax for a Resource, depending on whether it is a
URI or a Blank Node (ie, BNode)
|
Modifier and Type | Method and Description |
---|---|
static void |
RDFJSONWriter.writeObject(Value object,
Set<Resource> contexts,
com.fasterxml.jackson.core.JsonGenerator jg)
Helper method to reduce complexity of the JSON serialisation algorithm Any
null contexts will only be serialised to JSON if there are also non-null
contexts in the contexts array
|
Modifier and Type | Field and Description |
---|---|
protected Resource |
RDFXMLWriter.lastWrittenSubject |
Modifier and Type | Method and Description |
---|---|
protected Resource |
TriGParser.getContext() |
Modifier and Type | Method and Description |
---|---|
protected void |
TriGParser.reportStatement(Resource subj,
URI pred,
Value obj) |
protected void |
TriGParser.setContext(Resource context) |
Modifier and Type | Field and Description |
---|---|
protected Resource |
TurtleWriter.lastWrittenSubject |
protected Resource |
TurtleParser.subject |
Modifier and Type | Method and Description |
---|---|
protected Resource |
TurtleParser.parseCollection()
Parses a collection, e.g.
|
protected Resource |
TurtleParser.parseImplicitBlank()
Parses an implicit blank node.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TurtleParser.reportStatement(Resource subj,
URI pred,
Value obj) |
protected void |
TurtleWriter.writeResource(Resource res) |
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.
|
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(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.addStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts)
Adds a statement to the store.
|
void |
SailConnection.clear(Resource... contexts)
Removes all statements from the specified/all contexts.
|
protected long |
SailIsolationLevelTest.count(SailConnection con,
Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected long |
SailIsolationLevelTest.count(SailConnection con,
Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
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.
|
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.
|
boolean |
AdvancedSailConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Deprecated.
|
boolean |
AdvancedSailConnection.hasStatement(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
Deprecated.
|
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.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.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Removes all statements matching the specified subject, predicate and
object from the repository.
|
long |
SailConnection.size(Resource... contexts)
Returns the number of (explicit) statements in the store, or in specific
contexts.
|
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Resource,SailException> |
SailDataset.getContextIDs()
Returns the set of all unique context identifiers that are used to store
statements.
|
protected CloseableIteration<? extends Resource,SailException> |
SailSourceConnection.getContextIDsInternal() |
Modifier and Type | Method and Description |
---|---|
boolean |
SailSourceConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
SailSourceConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailSourceConnection.addStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailSourceConnection.addStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailSink.approve(Resource subj,
URI pred,
Value obj,
Resource ctx)
Adds a statement to the store.
|
void |
SailSink.clear(Resource... contexts)
Removes all statements from the specified/all contexts.
|
void |
SailSourceConnection.clearInferred(Resource... contexts) |
protected void |
SailSourceConnection.clearInternal(Resource... contexts) |
void |
SailSink.deprecate(Resource subj,
URI pred,
Value obj,
Resource ctx)
Removes a statement with the specified subject, predicate, object, and
context.
|
CloseableIteration<? extends Statement,SailException> |
SailDataset.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object.
|
CloseableIteration<? extends Statement,SailException> |
SailDataset.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Gets all statements that have a specific subject, predicate and/or object.
|
protected CloseableIteration<? extends Statement,SailException> |
SailSourceConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected CloseableIteration<? extends Statement,SailException> |
SailSourceConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
void |
SailSink.observe(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Called to indicate matching statements have been observed and must not
change their state until after this
SailSink is committed, iff this
was opened in an isolation level compatible with
IsolationLevels.SERIALIZABLE . |
void |
SailSink.observe(Resource subj,
URI pred,
Value obj,
Resource... contexts)
Called to indicate matching statements have been observed and must not
change their state until after this
SailSink is committed, iff this
was opened in an isolation level compatible with
IsolationLevels.SERIALIZABLE . |
boolean |
SailSourceConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
SailSourceConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailSourceConnection.removeStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailSourceConnection.removeStatement(UpdateContext op,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected long |
SailSourceConnection.sizeInternal(Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
Resource |
SailImplConfig.export(Graph graph) |
Resource |
DelegatingSailImplConfigBase.export(Graph graph) |
Resource |
SailImplConfigBase.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
SailImplConfig.parse(Graph graph,
Resource implNode) |
void |
DelegatingSailImplConfigBase.parse(Graph graph,
Resource implNode) |
void |
SailImplConfigBase.parse(Graph graph,
Resource implNode) |
static SailImplConfig |
SailConfigUtil.parseRepositoryImpl(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
Resource |
FederationConfig.export(Graph model) |
Modifier and Type | Method and Description |
---|---|
void |
FederationConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Statement,QueryEvaluationException> |
RepositoryTripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
CloseableIteration<? extends Statement,QueryEvaluationException> |
RepositoryTripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
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() |
Modifier and Type | Method and Description |
---|---|
void |
SailConnectionBase.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionBase.addStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionWrapper.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 |
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) |
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 abstract void |
SailConnectionBase.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionBase.clear(Resource... contexts) |
void |
SailConnectionWrapper.clear(Resource... contexts) |
protected abstract void |
SailConnectionBase.clearInternal(Resource... contexts) |
CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
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) |
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 abstract CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
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 |
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 |
SailConnectionWrapper.removeStatement(UpdateContext modify,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailConnectionBase.removeStatements(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) |
void |
SailConnectionWrapper.removeStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected abstract void |
SailConnectionBase.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected abstract void |
SailConnectionBase.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
long |
SailConnectionBase.size(Resource... contexts) |
long |
SailConnectionWrapper.size(Resource... contexts) |
long |
SailConnectionWrapper.size(Resource context) |
protected abstract long |
SailConnectionBase.sizeInternal(Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
CloseableIteration<? extends Resource,SailException> |
InferencerConnectionWrapper.getContextIDs()
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 |
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.
|
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.
|
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. |
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. |
boolean |
InferencerConnectionWrapper.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
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.
|
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 |
---|---|
Resource |
CustomGraphQueryInferencerConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
CustomGraphQueryInferencerConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
static Resource |
SearchFields.createContext(String idString) |
static Resource |
SearchFields.createResource(String idString)
Parses an id-string (a serialized resource) back to a resource Inverse
method of
getResourceID |
Resource[] |
LuceneSailBuffer.ClearContextOperation.getContexts() |
protected Resource |
AbstractSearchIndex.getResource(SearchDocument document)
Returns the Resource corresponding with the specified Document.
|
Resource |
QuerySpec.getSubject() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractSearchIndex.addDocuments(Resource subject,
List<Statement> statements)
Add a complete Lucene Document based on these statements.
|
void |
SearchIndex.addDocuments(Resource subject,
List<Statement> statements)
Add a complete Lucene Document based on these statements.
|
void |
LuceneSailConnection.addStatement(Resource arg0,
URI arg1,
Value arg2,
Resource... arg3) |
void |
LuceneSailConnection.addStatement(Resource arg0,
URI arg1,
Value arg2,
Resource... arg3) |
protected void |
AbstractLuceneSailTest.assertQueryResult(String literal,
URI predicate,
Resource resultUri) |
void |
LuceneSailConnection.clear(Resource... arg0) |
void |
LuceneSailBuffer.clear(Resource[] contexts) |
void |
SearchIndex.clearContexts(Resource... contexts)
This should be called from within a begin-commit-rollback block.
|
static String |
SearchFields.getContextID(Resource resource)
Get the ID for a context.
|
static String |
SearchFields.getResourceID(Resource resource)
Returns the String ID corresponding with the specified Resource.
|
Iterable<? extends DocumentScore> |
SearchQuery.query(Resource subject)
Deprecated.
Queries for the given subject or all subjects if null.
|
protected abstract Iterable<? extends DocumentScore> |
AbstractSearchIndex.query(Resource subject,
String q,
URI property,
boolean highlight) |
void |
LuceneSailConnection.removeStatements(Resource arg0,
URI arg1,
Value arg2,
Resource... arg3) |
void |
LuceneSailConnection.removeStatements(Resource arg0,
URI arg1,
Value arg2,
Resource... arg3) |
Constructor and Description |
---|
ClearContextOperation(Resource[] contexts) |
QuerySpec(StatementPattern matchesPattern,
StatementPattern queryPattern,
StatementPattern propertyPattern,
StatementPattern scorePattern,
StatementPattern snippetPattern,
StatementPattern typePattern,
Resource subject,
String queryString,
URI propertyURI) |
Modifier and Type | Method and Description |
---|---|
Resource |
AbstractLuceneSailConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractLuceneSailConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
void |
LuceneIndex.clearContexts(Resource... contexts) |
org.apache.lucene.document.Document |
LuceneIndex.getDocument(Resource subject,
Resource context)
Returns a Document representing the specified Resource & Context
combination, or null when no such Document exists yet.
|
List<org.apache.lucene.document.Document> |
LuceneIndex.getDocuments(Resource subject)
Returns a list of Documents representing the specified Resource (empty
when no such Document exists yet).
|
Iterable<? extends DocumentScore> |
LuceneQuery.query(Resource resource)
Deprecated.
|
protected Iterable<? extends DocumentScore> |
LuceneIndex.query(Resource subject,
String query,
URI propertyURI,
boolean highlight)
Parse the passed query.
|
org.apache.lucene.search.TopDocs |
LuceneIndex.search(Resource resource,
org.apache.lucene.search.Query query)
Evaluates the given query only for the given resource.
|
Modifier and Type | Method and Description |
---|---|
boolean |
MemoryStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
MemoryStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
MemoryStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
MemoryStoreConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
MemoryStoreConnection.clearInferred(Resource... contexts) |
protected void |
MemoryStoreConnection.clearInternal(Resource... contexts) |
boolean |
MemoryStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
MemoryStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
MemoryStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
MemoryStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
Resource |
MemoryStoreConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
MemoryStoreConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Interface and Description |
---|---|
interface |
MemResource
A MemoryStore-specific extension of Resource giving it subject statements.
|
Modifier and Type | Class and Description |
---|---|
class |
MemBNode
A MemoryStore-specific extension of BNodeImpl giving it node properties.
|
class |
MemURI
A MemoryStore-specific implementation of URI that stores separated namespace
and local name information to enable reuse of namespace String objects
(reducing memory usage) and that gives it node properties.
|
Modifier and Type | Method and Description |
---|---|
Statement |
MemValueFactory.createStatement(Resource subject,
URI predicate,
Value object) |
Statement |
MemValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context) |
MemResource |
MemValueFactory.getMemResource(Resource resource)
See getMemValue() for description.
|
MemResource |
MemValueFactory.getOrCreateMemResource(Resource resource)
See
MemValueFactory.getOrCreateMemValue(Value) for description. |
Modifier and Type | Method and Description |
---|---|
boolean |
SailModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
SailModel.add(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
SailModel.clear(Resource... contexts) |
boolean |
SailModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
SailModel.contains(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
SailModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Model |
SailModel.filter(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
SailModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
SailModel.remove(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
void |
SailModel.removeTermIteration(Iterator<Statement> iter,
Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
boolean |
NativeStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
NativeStoreConnection.addInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.addStatementInternal(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) |
Statement |
ValueStore.createStatement(Resource subject,
URI predicate,
Value object) |
Statement |
ValueStore.createStatement(Resource subject,
URI predicate,
Value object,
Resource context) |
NativeResource |
ValueStore.getNativeResource(Resource resource) |
boolean |
NativeStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
boolean |
NativeStoreConnection.removeInferredStatement(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
NativeStoreConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
Resource |
NativeStoreConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
NativeStoreConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Interface and Description |
---|---|
interface |
NativeResource |
Modifier and Type | Class and Description |
---|---|
class |
NativeBNode |
class |
NativeURI |
Modifier and Type | Method and Description |
---|---|
protected void |
RdbmsConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
RdbmsConnection.addStatementInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
RdbmsResource[] |
RdbmsValueFactory.asRdbmsResource(Resource... contexts) |
RdbmsResource |
RdbmsValueFactory.asRdbmsResource(Resource node) |
protected void |
RdbmsConnection.clearInternal(Resource... contexts) |
RdbmsStatement |
RdbmsValueFactory.createStatement(Resource subject,
URI predicate,
Value object) |
RdbmsStatement |
RdbmsValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context) |
RdbmsStatementIteration |
RdbmsTripleRepository.find(Resource subj,
URI pred,
Value obj,
Resource... ctxs) |
RdbmsStatementIteration |
RdbmsTripleRepository.find(Resource subj,
URI pred,
Value obj,
Resource... ctxs) |
protected CloseableIteration<? extends Statement,SailException> |
RdbmsConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
protected CloseableIteration<? extends Statement,SailException> |
RdbmsConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts) |
int |
RdbmsTripleRepository.remove(Resource subj,
URI pred,
Value obj,
Resource... ctxs) |
int |
RdbmsTripleRepository.remove(Resource subj,
URI pred,
Value obj,
Resource... ctxs) |
protected void |
RdbmsConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected void |
RdbmsConnection.removeStatementsInternal(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
protected long |
RdbmsConnection.sizeInternal(Resource... contexts) |
Modifier and Type | Method and Description |
---|---|
static ColumnVar |
ColumnVar.createCtx(String alias,
Var v,
Resource resource) |
static ColumnVar |
ColumnVar.createSubj(String alias,
Var v,
Resource resource) |
Modifier and Type | Method and Description |
---|---|
Resource |
RdbmsStoreConfig.export(Graph graph) |
Modifier and Type | Method and Description |
---|---|
void |
RdbmsStoreConfig.parse(Graph graph,
Resource implNode) |
Modifier and Type | Method and Description |
---|---|
CloseableIteration |
RdbmsTripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
CloseableIteration |
RdbmsTripleSource.getStatements(Resource subj,
URI pred,
Value obj,
Resource... contexts) |
Modifier and Type | Class and Description |
---|---|
class |
RdbmsBNode
Wraps a
BNodeImpl providing an internal id and version. |
class |
RdbmsResource
Provides an internal id and version for URI and BNodes.
|
class |
RdbmsURI
Wraps a
URIImpl providing an internal id and version. |
Copyright © 2001–2016 Aduna. All rights reserved.