Uses of Interface
org.eclipse.rdf4j.model.Resource
Packages that use Resource
Package
Description
The RDF Model API
Abstract base classes for RDF Model API interfaces.
Default implementations of the RDF model interfaces
Helper classes for working with RDF models.
Functionality to convert tuple query results to and from the
Data Access Working Group Test Result Set RDF Vocabulary
The rdf4j SPARQL 1.1 parser.
Parsers and writers for the
SPARQL Query Results XML Format
The Repository API: the main API for accessing rdf databases and SPARQL endpoints.
Abstract base classes and wrappers for the main Repository API interfaces.
Repository configuration interfaces.
A repository wrapper with convenience functions for handling contexts.
Interfaces for notification/interception of events happening on Repositories and RepositoryConnections
Wrapper/adapter base implementations.
A repository that serves as a proxy client for a remote repository on an RDF4J Server.
Repository implementation for local RDF databases that implement the SAIL SPI.
Helper and utility classes for the
SailRepository
A
Repository
that serves as a SPARQL endpoint client.Helper classes for working with Repositories.
Rio: The RDF4J parser/writer API.
Parser/writer for the RDF4J binary RDF format.
Parser/writer for the HDT v1.0 format.
Provides helpers classes for Rio.
Parser/writer for the JSON-L format.
Parser/writer for the N-Quads format.
Parser/writer for the N-Triples format.
Parser/writer for the RDF/JSON format.
Parser/writer for the RDF/XML format.
Pretty-printing for the RDF/XML format.
Parser/writer for the TriG format.
Parser/writer for the TriX format.
Parser/writer for the Turtle format.
RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an SPI for RDF databases.
Base functionality for Sail implementations that require multi-versioned concurrency control (MVCC).
Abstract base implementation and internal helper classes for Sail implementations.
Forward-chaining inferencers, implemented as
StackableSail
s.A Sail implementation that supports full-text indexing via the Lucene API.
An implementation of the RDF SAIL API that uses main memory for storage.
MemoryStore-specific implementations of the core RDF model objects.
A Sail implementation for SHACL constraint checking.
See discussion at https://github.com/eclipse/rdf4j/issues/1262
Core functions required for SPIN.
-
Uses of Resource in org.eclipse.rdf4j.http.client
Methods in org.eclipse.rdf4j.http.client with parameters of type ResourceModifier and TypeMethodDescriptionvoid
RDF4JProtocolSession.addData
(InputStream contents, String baseURI, RDFFormat dataFormat, Resource... contexts) void
RDF4JProtocolSession.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) void
RDF4JProtocolSession.removeData
(InputStream contents, String baseURI, RDFFormat dataFormat, Resource... contexts) long
protected void
RDF4JProtocolSession.upload
(InputStream contents, String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Protocol.Action action, Resource... contexts) void
RDF4JProtocolSession.upload
(InputStream contents, String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Resource... contexts) protected void
RDF4JProtocolSession.upload
(Reader contents, String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Protocol.Action action, Resource... contexts) void
RDF4JProtocolSession.upload
(Reader contents, String baseURI, RDFFormat dataFormat, boolean overwrite, boolean preserveNodeIds, Resource... contexts) protected void
RDF4JProtocolSession.upload
(org.apache.http.HttpEntity reqEntity, String baseURI, boolean overwrite, boolean preserveNodeIds, Protocol.Action action, Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.http.protocol
Methods in org.eclipse.rdf4j.http.protocol that return ResourceModifier and TypeMethodDescriptionstatic 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.Methods in org.eclipse.rdf4j.http.protocol with parameters of type ResourceModifier and TypeMethodDescriptionstatic 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. -
Uses of Resource in org.eclipse.rdf4j.http.protocol.transaction
Methods in org.eclipse.rdf4j.http.protocol.transaction that return ResourceModifier and TypeMethodDescriptionprivate Resource[]
TransactionSAXParser.createContexts
(int startIdx) Methods in org.eclipse.rdf4j.http.protocol.transaction with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.http.protocol.transaction.operations
Fields in org.eclipse.rdf4j.http.protocol.transaction.operations declared as ResourceModifier and TypeFieldDescriptionprotected Resource[]
ContextOperation.contexts
private Resource
StatementOperation.subject
Methods in org.eclipse.rdf4j.http.protocol.transaction.operations that return ResourceModifier and TypeMethodDescriptionResource[]
ContextOperation.getContexts()
StatementOperation.getSubject()
Methods in org.eclipse.rdf4j.http.protocol.transaction.operations with parameters of type ResourceModifier and TypeMethodDescriptionvoid
ContextOperation.setContexts
(Resource... contexts) void
StatementOperation.setSubject
(Resource subject) Constructors in org.eclipse.rdf4j.http.protocol.transaction.operations with parameters of type ResourceModifierConstructorDescriptionAddStatementOperation
(Resource subj, IRI pred, Value obj, Resource... contexts) Create an AddStatementOperation.ClearOperation
(Resource... contexts) protected
ContextOperation
(Resource... contexts) RemoveStatementsOperation
(Resource subj, IRI pred, Value obj, Resource... contexts) Creates a RemoveStatementsOperation.protected
StatementOperation
(Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.model
Subinterfaces of Resource in org.eclipse.rdf4j.modelModifier and TypeInterfaceDescriptioninterface
An RDF-1.1 blank node (aka bnode, aka anonymous node).interface
An Internationalized Resource Identifier (IRI).interface
An RDF-star embedded triple.Methods in org.eclipse.rdf4j.model that return ResourceModifier and TypeMethodDescriptionStatement.getContext()
Gets the context of this statement.Statement.getSubject()
Gets the subject of this statement.Triple.getSubject()
Gets the subject of this triple.Methods in org.eclipse.rdf4j.model that return types with arguments of type ResourceModifier and TypeMethodDescriptionModel.contexts()
Returns aSet
view of the contexts contained in this model.Model.subjects()
Returns aSet
view of the subjects contained in this model.Methods in org.eclipse.rdf4j.model with parameters of type ResourceModifier and TypeMethodDescriptionboolean
Adds one or more statements to the model.boolean
Removes statements with the specified context exist in this model.boolean
Determines if statements with the specified subject, predicate, object and (optionally) context exist in this model.ValueFactory.createStatement
(Resource subject, IRI predicate, Value object) Creates a new statement with the supplied subject, predicate and object.ValueFactory.createStatement
(Resource subject, IRI predicate, Value object, Resource context) Creates a new statement with the supplied subject, predicate and object and associated context.default Triple
ValueFactory.createTriple
(Resource subject, IRI predicate, Value object) Creates a new RDF-star triple with the supplied subject, predicate and object.Returns a filtered view of the statements with the specified subject, predicate, object and (optionally) context.Model.getStatements
(Resource subject, IRI predicate, Value object, Resource... contexts) boolean
Removes statements with the specified subject, predicate, object and (optionally) context exist in this model. -
Uses of Resource in org.eclipse.rdf4j.model.base
Classes in org.eclipse.rdf4j.model.base that implement ResourceModifier and TypeClassDescriptionclass
Base class forBNode
, offering common functionality.(package private) static class
class
Base class forIRI
, offering common functionality.(package private) static class
class
Base class forTriple
, offering common functionality.(package private) static class
final class
An IRI implementation that interns the stringValue so that two objects can be compared by their stringValue reference.Fields in org.eclipse.rdf4j.model.base declared as ResourceModifier and TypeFieldDescriptionprivate final Resource
AbstractValueFactory.GenericStatement.context
private final Resource
AbstractTriple.GenericTriple.subject
private final Resource
AbstractValueFactory.GenericStatement.subject
Methods in org.eclipse.rdf4j.model.base that return ResourceModifier and TypeMethodDescriptionAbstractValueFactory.GenericStatement.getContext()
AbstractTriple.GenericTriple.getSubject()
AbstractValueFactory.GenericStatement.getSubject()
Methods in org.eclipse.rdf4j.model.base with parameters of type ResourceModifier and TypeMethodDescriptionAbstractValueFactory.createStatement
(Resource subject, IRI predicate, Value object) AbstractValueFactory.createStatement
(Resource subject, IRI predicate, Value object, Resource context) AbstractValueFactory.createTriple
(Resource subject, IRI predicate, Value object) Constructors in org.eclipse.rdf4j.model.base with parameters of type ResourceModifierConstructorDescription(package private)
GenericStatement
(Resource subject, IRI predicate, Value object, Resource context) (package private)
GenericTriple
(Resource subject, IRI predicate, Value object) -
Uses of Resource in org.eclipse.rdf4j.model.impl
Classes in org.eclipse.rdf4j.model.impl with type parameters of type ResourceModifier and TypeClassDescriptionclass
GenericStatement<R extends Resource,
I extends IRI, V extends Value> An implementation of the Statement interface with support for Java Generics.Classes in org.eclipse.rdf4j.model.impl that implement ResourceModifier and TypeClassDescriptionclass
An simple default implementation of theBNode
interface.class
The default implementation of theIRI
interface.class
A simple default implementation of theTriple
interface.Fields in org.eclipse.rdf4j.model.impl declared as ResourceModifier and TypeFieldDescriptionprivate final Resource
ContextStatement.context
Deprecated, for removal: This API element is subject to removal in a future version.The statement's context, if applicable.protected final R
GenericStatement.context
protected Resource[]
FilteredModel.contexts
private static final Resource[]
DynamicModel.NULL_CTX
(package private) static final Resource[]
LinkedHashModel.NULL_CTX
protected Resource
FilteredModel.subj
protected final R
GenericStatement.subject
private final Resource
SimpleStatement.subject
Deprecated, for removal: This API element is subject to removal in a future version.The statement's subject.private final Resource
SimpleTriple.subject
The triple's subject.Fields in org.eclipse.rdf4j.model.impl with type parameters of type ResourceModifier and TypeFieldDescription(package private) LinkedHashModel.ModelNode
<Resource> LinkedHashModel.ModelStatement.ctx
(package private) LinkedHashModel.ModelNode
<Resource> LinkedHashModel.ModelStatement.subj
Methods in org.eclipse.rdf4j.model.impl that return ResourceModifier and TypeMethodDescriptionContextStatement.getContext()
Deprecated, for removal: This API element is subject to removal in a future version.LinkedHashModel.ModelStatement.getContext()
SimpleStatement.getContext()
Deprecated, for removal: This API element is subject to removal in a future version.LinkedHashModel.ModelStatement.getSubject()
SimpleStatement.getSubject()
Deprecated, for removal: This API element is subject to removal in a future version.SimpleTriple.getSubject()
private Resource[]
Methods in org.eclipse.rdf4j.model.impl that return types with arguments of type ResourceModifier and TypeMethodDescriptionAbstractModel.contexts()
DynamicModel.contexts()
AbstractModel.subjects()
DynamicModel.subjects()
Methods in org.eclipse.rdf4j.model.impl with parameters of type ResourceModifier and TypeMethodDescriptionprivate boolean
boolean
boolean
boolean
boolean
boolean
boolean
private Set
<LinkedHashModel.ModelStatement> boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
SimpleValueFactory.createStatement
(Resource subject, IRI predicate, Value object) SimpleValueFactory.createStatement
(Resource subject, IRI predicate, Value object, Resource context) ValidatingValueFactory.createStatement
(Resource subject, IRI predicate, Value object) ValidatingValueFactory.createStatement
(Resource subject, IRI predicate, Value object, Resource context) SimpleValueFactory.createTriple
(Resource subject, IRI predicate, Value object) ValidatingValueFactory.createTriple
(Resource subject, IRI predicate, Value object) boolean
ContextStatement.exactSameContext
(Resource context) Deprecated, for removal: This API element is subject to removal in a future version.boolean
SimpleStatement.exactSameSubject
(Resource subject) Deprecated, for removal: This API element is subject to removal in a future version.DynamicModel.getStatements
(Resource subject, IRI predicate, Value object, Resource... contexts) private boolean
private boolean
private LinkedHashModel.ModelIterator
LinkedHashModel.matchPattern
(Resource subj, IRI pred, Value obj, Resource... contexts) TreeModel.matchPattern
(Resource subj, IRI pred, Value obj, Resource ctx) private Resource[]
boolean
boolean
boolean
boolean
boolean
boolean
protected abstract void
FilteredModel.removeFilteredTermIteration
(Iterator<Statement> iter, Resource subj, IRI 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, IRI pred, Value obj, Resource... contexts) Called by aggregate sets when a term has been removed from a term iterator.void
EmptyModel.removeTermIteration
(Iterator<Statement> iter, Resource subj, IRI pred, Value obj, Resource... contexts) final void
FilteredModel.removeTermIteration
(Iterator<Statement> iter, Resource s, IRI p, Value o, Resource... c) void
LinkedHashModel.removeTermIteration
(Iterator iterator, Resource subj, IRI pred, Value obj, Resource... contexts) void
TreeModel.removeTermIteration
(Iterator<Statement> iterator, Resource subj, IRI pred, Value obj, Resource... contexts) void
UnmodifiableModel.removeTermIteration
(Iterator<Statement> iter, Resource subj, IRI pred, Value obj, Resource... contexts) Constructors in org.eclipse.rdf4j.model.impl with parameters of type ResourceModifierConstructorDescriptionprotected
ContextStatement
(Resource subject, IRI predicate, Value object, Resource context) Deprecated, for removal: This API element is subject to removal in a future version.Creates a new Statement with the supplied subject, predicate and object for the specified associated context.protected
FilteredModel
(AbstractModel model, Resource subj, IRI pred, Value obj, Resource... contexts) protected
SimpleStatement
(Resource subject, IRI predicate, Value object) Deprecated, for removal: This API element is subject to removal in a future version.Creates a new Statement with the supplied subject, predicate and object.protected
SimpleTriple
(Resource subject, IRI predicate, Value object) Creates a new Triple with the supplied subject, predicate and object.TreeStatement
(Resource subject, IRI predicate, Value object, Resource ctx) Constructor parameters in org.eclipse.rdf4j.model.impl with type arguments of type ResourceModifierConstructorDescriptionModelStatement
(LinkedHashModel.ModelNode<Resource> subj, LinkedHashModel.ModelNode<IRI> pred, LinkedHashModel.ModelNode<Value> obj, LinkedHashModel.ModelNode<Resource> ctx) ModelStatement
(LinkedHashModel.ModelNode<Resource> subj, LinkedHashModel.ModelNode<IRI> pred, LinkedHashModel.ModelNode<Value> obj, LinkedHashModel.ModelNode<Resource> ctx, Statement statement) -
Uses of Resource in org.eclipse.rdf4j.model.util
Fields in org.eclipse.rdf4j.model.util declared as ResourceModifier and TypeFieldDescriptionprivate Resource
ModelBuilder.currentNamedGraph
private Resource
ModelBuilder.currentSubject
Fields in org.eclipse.rdf4j.model.util with type parameters of type ResourceMethods in org.eclipse.rdf4j.model.util that return ResourceModifier and TypeMethodDescriptionprivate static Resource
Statements.createReifiedStatement
(ValueFactory vf, Function<Triple, Resource> reifiedIdMapper, Triple triple, Resource context, Consumer<Statement> consumer) Converts the supplied RDF-star triple to a series of RDF reification statements and sends the statements to the supplied consumer.Methods in org.eclipse.rdf4j.model.util that return types with arguments of type ResourceModifier and TypeMethodDescriptionSynchronizedModel.contexts()
Models.getPropertyResource
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve a property value as an IRI for the supplied subject from the given model.Models.getPropertyResources
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve all property Resource values for the supplied subject and property from the given model.Configurations.getResourceValue
(Model model, Resource subject, IRI property, IRI legacyProperty) Retrieve a property value for the supplied subject as aResource
if present, falling back to a supplied legacy property .Models.objectResource
(Iterable<Statement> statements) Retrieves an objectResource
value from the supplied statements.Models.objectResource
(Model m) Retrieves an objectResource
value from the statements in the given model.Models.objectResources
(Iterable<Statement> statements) Retrieves all objectResource
values from the supplied statements.Models.objectResources
(Model m) Retrieves all objectResource
values from the supplied model.Retrieves a subjectResource
from the supplied statements.Retrieves a subjectResource
from the statements in the given model.SynchronizedModel.subjects()
Methods in org.eclipse.rdf4j.model.util with parameters of type ResourceModifier and TypeMethodDescriptionAdd an RDF statement with the given subject, predicate and object to the model, using the current graph (either named or default).boolean
static <C extends Collection<Statement>>
CConverts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static <C extends Collection<Statement>>
CRDFCollections.asRDF
(Iterable<?> values, Resource head, C sink, ValueFactory valueFactory, Resource... contexts) Converts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static <C extends Collection<Value>>
CConverts an RDF Collection to a JavaCollection
ofValue
objects.boolean
static void
Statements.consume
(ValueFactory vf, Resource subject, IRI predicate, Value object, Consumer<Statement> consumer, Resource... contexts) static void
RDFCollections.consumeCollection
(Iterable<?> values, Resource head, Consumer<Statement> consumer, Resource... contexts) Converts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static void
RDFCollections.consumeCollection
(Iterable<?> values, Resource head, Consumer<Statement> consumer, ValueFactory vf, Resource... contexts) Converts the suppliedIterable
to an RDF Collection, using the suppliedhead
resource as the starting resource of the RDF Collection.static void
RDFContainers.consumeContainer
(IRI containerType, Iterable<?> values, Resource container, Consumer<Statement> consumer, Resource... contexts) Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Containter.static void
RDFContainers.consumeContainer
(IRI containerType, Iterable<?> values, Resource container, Consumer<Statement> consumer, ValueFactory vf, Resource... contexts) Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Container.static void
RDFCollections.consumeValues
(Model m, Resource head, Consumer<Value> consumer, Resource... contexts) static void
RDFContainers.consumeValues
(Model m, Resource container, IRI containerType, Consumer<Value> consumer, Resource... contexts) boolean
static <C extends Collection<Statement>>
CStatements.create
(ValueFactory vf, Resource subject, IRI predicate, Value object, C collection, Resource... contexts) Creates one or moreStatement
objects with the given subject, predicate and object, one for each given context.private static Resource
Statements.createReifiedStatement
(ValueFactory vf, Function<Triple, Resource> reifiedIdMapper, Triple triple, Resource context, Consumer<Statement> consumer) Converts the supplied RDF-star triple to a series of RDF reification statements and sends the statements to the supplied consumer.static void
RDFCollections.extract
(Model sourceModel, Resource head, Consumer<Statement> consumer, Resource... contexts) Extracts the RDF Collection starting with suppliedhead
resource from the supplied sourceModel
and sends the statements that make up the collection to the suppliedConsumer
.static <E extends RDF4JException>
voidRDFCollections.extract
(GetStatementOptional statementSupplier, Resource head, Consumer<Statement> collectionConsumer, Function<String, Supplier<E>> exceptionSupplier, Resource... contexts) Extracts an RDF Collection starting with the supplied list head from the statement supplier and sends all statements that make up the collection to the suppliedConsumer
function.static void
RDFContainers.extract
(IRI containerType, Model sourceModel, Resource container, Consumer<Statement> consumer, Resource... contexts) Extracts the RDF Container starting with suppliedhead
resource from the supplied sourceModel
and sends the statements that make up the collection to the suppliedConsumer
.static <E extends RDF4JException>
voidRDFContainers.extract
(IRI containerType, GetStatementOptional statementSupplier, Resource container, Consumer<Statement> collectionConsumer, Function<String, Supplier<E>> exceptionSupplier, Resource... contexts) Extracts an RDF Container starting with the supplied container head from the statement supplier and sends all statements that make up the collection to the suppliedConsumer
function.Either supplies a statement matching the given pattern, orOptional.empty()
otherwise.static <C extends Collection<Statement>>
CRDFCollections.getCollection
(Model sourceModel, Resource head, C sink, Resource... contexts) Extracts the RDF Collection starting with the suppliedhead
resource from the supplied sourceModel
.static <C extends Collection<Statement>>
CRDFContainers.getContainer
(IRI containerType, Model sourceModel, Resource container, C sink, Resource... contexts) Configurations.getIRIValue
(Model model, Resource subject, IRI property, IRI legacyProperty) Retrieve a property value for the supplied subject as aIRI
if present, falling back to a supplied legacy property .Configurations.getLiteralValue
(Model model, Resource subject, IRI property, IRI legacyProperty) Retrieve a property value for the supplied subject as aLiteral
if present, falling back to a supplied legacy property .Models.getProperties
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve all property values for the supplied subject and property from the given model.Models.getProperty
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve a property value for the supplied subject from the given model.Models.getPropertyIRI
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve a property value as an IRI for the supplied subject from the given model.Models.getPropertyIRIs
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve all property IRI values for the supplied subject and property from the given model.Models.getPropertyLiteral
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve a property value as aLiteral
for the supplied subject from the given model.Models.getPropertyLiterals
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve all property Literal values for the supplied subject and property from the given model.Models.getPropertyResource
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve a property value as an IRI for the supplied subject from the given model.Models.getPropertyResources
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve all property Resource values for the supplied subject and property from the given model.Models.getPropertyString
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve a property value as a String for the supplied subject from the given model.Models.getPropertyStrings
(Model m, Resource subject, IRI property, Resource... contexts) Retrieve all property values as Strings for the supplied subject and property from the given model.Configurations.getPropertyValues
(Model model, Resource subject, IRI property, IRI legacyProperty) Retrieve all property values for the supplied subject as a Set of values and include all values for any legacy property.Configurations.getResourceValue
(Model model, Resource subject, IRI property, IRI legacyProperty) Retrieve a property value for the supplied subject as aResource
if present, falling back to a supplied legacy property .ModelBuilder.namedGraph
(Resource namedGraph) Set the current graph in which to add new statements to the supplied named graph.boolean
static Model
Sets the property value for the given subject to the given object value, replacing any existing value(s) for the subject's property.static Statement
Create aStatement
from the supplied subject, predicate, object and context.static Statement
Create aStatement
from the suppliedRDF-star triple
and context.static Statement
Statements.statement
(ValueFactory vf, Resource subject, IRI predicate, Value object, Resource context) Create aStatement
from the supplied subject, predicate, object and context.static Statement
Statements.statement
(ValueFactory vf, Triple triple, Resource context) Create aStatement
from the suppliedRDF-star triple
and context.static Model
Models.stripContexts
(Model model, Resource... contexts) Strips contexts from the input model.Set the subject resource about which statements are to be added to the model.static <C extends Collection<Statement>>
CRDFContainers.toRDF
(IRI containerType, Iterable<?> values, Resource container, C sink, Resource... contexts) Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Containter.static <C extends Collection<Statement>>
CRDFContainers.toRDF
(IRI containerType, Iterable<?> values, Resource container, C sink, ValueFactory vf, Resource... contexts) Converts the suppliedIterable
to an RDF Container, using the suppliedhead
resource as the starting resource of the RDF Containter.static Statement
Statements.toStatement
(Triple triple, Resource context) Deprecated.static Statement
Statements.toStatement
(ValueFactory vf, Triple triple, Resource context) Deprecated.static <C extends Collection<Value>>
CRDFContainers.toValues
(IRI containerType, Model m, Resource container, C collection, Resource... contexts) Converts an RDF Containter to a JavaCollection
ofValue
objects.static Triple
Creates a newRDF-star embedded triple
with the supplied subject, predicate, and object.static Triple
Values.triple
(ValueFactory vf, Resource subject, IRI predicate, Value object) Creates a newRDF-star embedded triple
with the supplied subject, predicate, and object.Method parameters in org.eclipse.rdf4j.model.util with type arguments of type ResourceModifier and TypeMethodDescriptionprivate static boolean
private static boolean
static void
Statements.convertRDFStarToReification
(ValueFactory vf, Function<Triple, Resource> reifiedIdMapper, Statement st, Consumer<Statement> consumer) Converts the supplied RDF-star statement to RDF reification statements, and sends the resultant statements to the supplied consumer.private static Resource
Statements.createReifiedStatement
(ValueFactory vf, Function<Triple, Resource> reifiedIdMapper, Triple triple, Resource context, Consumer<Statement> consumer) Converts the supplied RDF-star triple to a series of RDF reification statements and sends the statements to the supplied consumer.private static boolean
private static boolean
-
Uses of Resource in org.eclipse.rdf4j.query.algebra.evaluation
Methods in org.eclipse.rdf4j.query.algebra.evaluation with parameters of type ResourceModifier and TypeMethodDescriptionCloseableIteration
<? extends Triple, QueryEvaluationException> RDFStarTripleSource.getRdfStarTriples
(Resource subj, IRI pred, Value obj) Gets all Triple nodes that have a specific subject, predicate and/or object.CloseableIteration
<? extends Statement, QueryEvaluationException> TripleSource.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) Gets all statements that have a specific subject, predicate and/or object. -
Uses of Resource in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps
Fields in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps declared as ResourceModifier and TypeFieldDescriptionstatic final Resource[]
StatementPatternQueryEvaluationStep.ALL_CONTEXT
static final Resource[]
StatementPatternQueryEvaluationStep.DEFAULT_CONTEXT
Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps that return ResourceModifier and TypeMethodDescriptionprivate static Resource[]
StatementPatternQueryEvaluationStep.contextsGivenContextVal
(Value contextValue) private static Resource[]
StatementPatternQueryEvaluationStep.fillContextsFromDatasSetGraphs
(Set<IRI> graphs) Methods in org.eclipse.rdf4j.query.algebra.evaluation.impl.evaluationsteps with parameters of type ResourceModifier and TypeMethodDescriptionStatementPatternQueryEvaluationStep.filterContextOrEqualVariables
(StatementPattern statementPattern, Value subjValue, Value predValue, Value objValue, Resource[] contexts) Generate a predicate that tests for Named contexts are matched by retrieving all statements from the store and filtering out the statements that do not have a context.private CloseableIteration
<? extends Statement, QueryEvaluationException> StatementPatternQueryEvaluationStep.handleFilter
(Resource[] contexts, Resource subject, IRI predicate, Value object, CloseableIteration<? extends Statement, QueryEvaluationException> iteration) -
Uses of Resource in org.eclipse.rdf4j.query.algebra.evaluation.util
Methods in org.eclipse.rdf4j.query.algebra.evaluation.util that return types with arguments of type ResourceModifier and TypeMethodDescriptionTripleSources.getObjectResources
(Resource subject, IRI predicate, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.TripleSources.listResources
(Resource subj, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.eclipse.rdf4j.query.algebra.evaluation.util with parameters of type ResourceModifier and TypeMethodDescriptionstatic boolean
TripleSources.booleanValue
(Resource subj, IRI pred, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.TripleSources.getObjectLiterals
(Resource subject, IRI predicate, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.TripleSources.getObjectResources
(Resource subject, IRI predicate, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.TripleSources.getObjectURIs
(Resource subject, IRI predicate, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.static Iteration
<Value, QueryEvaluationException> TripleSources.list
(Resource subj, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.TripleSources.listResources
(Resource subj, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.static Statement
TripleSources.single
(Resource subj, IRI pred, Value obj, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version.Returns the single statement with the given subject, predicate and object or null if none exists.static Value
TripleSources.singleValue
(Resource subj, IRI pred, TripleSource store) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Resource in org.eclipse.rdf4j.query.dawg
Methods in org.eclipse.rdf4j.query.dawg with parameters of type ResourceModifier and TypeMethodDescriptionprivate Binding
DAWGTestResultSetParser.getBinding
(Resource bindingNode) DAWGTestResultSetParser.getBindingNames
(Resource resultSetNode) private void
DAWGTestResultSetParser.reportSolution
(Resource solutionNode, List<String> bindingNames) private void
DAWGTestResultSetWriter.reportStatement
(Resource subject, IRI predicate, Value object) -
Uses of Resource in org.eclipse.rdf4j.query.parser.sparql
Methods in org.eclipse.rdf4j.query.parser.sparql that return ResourceModifier and TypeMethodDescriptionprotected Resource
SPARQLUpdateDataBlockParser.parseImplicitBlank()
protected Resource
SPARQLUpdateDataBlockParser.parseNodeID()
-
Uses of Resource in org.eclipse.rdf4j.query.resultio.sparqlxml
Fields in org.eclipse.rdf4j.query.resultio.sparqlxml declared as ResourceMethods in org.eclipse.rdf4j.query.resultio.sparqlxml that return ResourceMethods in org.eclipse.rdf4j.query.resultio.sparqlxml with parameters of type ResourceModifier and TypeMethodDescriptionvoid
SPARQLResultsSAXParser.TripleContainer.setSubject
(Resource subject) -
Uses of Resource in org.eclipse.rdf4j.query.resultio.text.csv
Methods in org.eclipse.rdf4j.query.resultio.text.csv with parameters of type ResourceModifier and TypeMethodDescriptionprotected void
SPARQLResultsCSVWriter.writeResource
(Resource res) -
Uses of Resource in org.eclipse.rdf4j.query.resultio.text.tsv
Methods in org.eclipse.rdf4j.query.resultio.text.tsv with parameters of type ResourceModifier and TypeMethodDescriptionprotected void
SPARQLResultsTSVWriter.writeResource
(Resource res) -
Uses of Resource in org.eclipse.rdf4j.repository
Methods in org.eclipse.rdf4j.repository that return types with arguments of type ResourceModifier and TypeMethodDescriptionRepositoryConnection.getContextIDs()
Gets all resources that are used as content identifiers.Methods in org.eclipse.rdf4j.repository with parameters of type ResourceModifier and TypeMethodDescriptionvoid
Adds RDF data from the specified file to a specific contexts in the repository.default void
Adds RDF data from the specified file to a specific contexts in the repository.default void
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.default void
RepositoryConnection.add
(InputStream in, RDFFormat dataFormat, Resource... contexts) Adds RDF data from an InputStream to the repository, optionally to one or more named contexts.void
Adds RDF data from a Reader to the repository, optionally to one or more named contexts.default void
Adds RDF data from a Reader to the repository, optionally to one or more named contexts.void
Adds the supplied statements to this repository, optionally to one or more named contexts.void
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts.default void
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts.default void
Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts.default <E extends Exception>
voidRepositoryConnection.add
(CloseableIteration<? extends Statement, E> statements, Resource... contexts) Adds the supplied statements to this repository, optionally to one or more named contexts.<E extends Exception>
voidDeprecated, for removal: This API element is subject to removal in a future version.void
Adds a statement with the specified subject, predicate and object to this repository, optionally to one or more named contexts.void
Adds the supplied statement to this repository, optionally to one or more named contexts.default void
RepositoryConnection.add
(RepositoryResult<Statement> statements, Resource... contexts) Adds the supplied statements to this repository, optionally to one or more named contexts.void
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, IRI 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.RepositoryConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) Gets all statements with a specific subject, predicate and/or object from the repository.default RepositoryResult
<Statement> RepositoryConnection.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) Gets all statements with a specific subject, predicate and/or object from the repository.boolean
RepositoryConnection.hasStatement
(Resource subj, IRI 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
Removes the supplied statements from the specified contexts in this repository.default <E extends Exception>
voidRepositoryConnection.remove
(CloseableIteration<? 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.<E extends Exception>
voidDeprecated, for removal: This API element is subject to removal in a future version.void
Removes the statement(s) with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.void
Removes the supplied statement from the specified contexts in the repository.default void
RepositoryConnection.remove
(RepositoryResult<Statement> statements, Resource... contexts) Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves.long
Returns the number of (explicit) statements that are in the specified contexts in this repository. -
Uses of Resource in org.eclipse.rdf4j.repository.base
Methods in org.eclipse.rdf4j.repository.base that return types with arguments of type ResourceMethods in org.eclipse.rdf4j.repository.base with parameters of type ResourceModifier and TypeMethodDescriptionvoid
AbstractRepositoryConnection.add
(File file, String baseURI, RDFFormat dataFormat, Resource... contexts) void
AbstractRepositoryConnection.add
(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) void
AbstractRepositoryConnection.add
(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts) void
void
AbstractRepositoryConnection.add
(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts) <E extends Exception>
voidvoid
AbstractRepositoryConnection.add
(Resource subject, IRI predicate, Value object, Resource... contexts) void
void
RepositoryConnectionWrapper.add
(File file, String baseURI, RDFFormat dataFormat, Resource... contexts) void
RepositoryConnectionWrapper.add
(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) void
RepositoryConnectionWrapper.add
(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts) void
void
RepositoryConnectionWrapper.add
(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts) <E extends Exception>
voidRepositoryConnectionWrapper.add
(Iteration<? extends Statement, E> statementIter, Resource... contexts) void
RepositoryConnectionWrapper.add
(Resource subject, IRI predicate, Value object, Resource... contexts) void
protected abstract void
AbstractRepositoryConnection.addWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) protected void
AbstractRepositoryConnection.addWithoutCommit
(Statement st, Resource... contexts) protected void
RepositoryConnectionWrapper.addWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) void
void
void
AbstractRepositoryConnection.export
(RDFHandler handler, Resource... contexts) void
RepositoryConnectionWrapper.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) RepositoryConnectionWrapper.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
AbstractRepositoryConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
AbstractRepositoryConnection.hasStatement
(Statement st, boolean includeInferred, Resource... contexts) boolean
RepositoryConnectionWrapper.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
RepositoryConnectionWrapper.hasStatement
(Statement st, boolean includeInferred, Resource... contexts) void
<E extends Exception>
voidAbstractRepositoryConnection.remove
(Iteration<? extends Statement, E> statements, Resource... contexts) void
AbstractRepositoryConnection.remove
(Resource subject, IRI predicate, Value object, Resource... contexts) void
void
<E extends Exception>
voidRepositoryConnectionWrapper.remove
(Iteration<? extends Statement, E> statementIter, Resource... contexts) void
RepositoryConnectionWrapper.remove
(Resource subject, IRI predicate, Value object, Resource... contexts) void
protected abstract void
AbstractRepositoryConnection.removeWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) protected void
AbstractRepositoryConnection.removeWithoutCommit
(Statement st, Resource... contexts) protected void
RepositoryConnectionWrapper.removeWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) long
-
Uses of Resource in org.eclipse.rdf4j.repository.config
Methods in org.eclipse.rdf4j.repository.config that return ResourceModifier and TypeMethodDescriptionExport thisRepositoryImplConfig
to its RDF representationstatic Resource
RepositoryConfigUtil.getContext
(RepositoryConnection con, String repositoryID) Deprecated.Methods in org.eclipse.rdf4j.repository.config with parameters of type ResourceModifier and TypeMethodDescriptionstatic RepositoryImplConfig
Utility method to create a newRepositoryImplConfig
by reading data from the suppliedModel
.static RepositoryConfig
Creates a newRepositoryConfig
object and initializes it by supplying themodel
andrepositoryNode
to itsparse
method.void
Exports the configuration into RDF using the given repositoryNodevoid
void
void
void
Reads the properties of thisRepositoryImplConfig
from the supplied Model and sets them accordingly. -
Uses of Resource in org.eclipse.rdf4j.repository.contextaware
Methods in org.eclipse.rdf4j.repository.contextaware with parameters of type ResourceModifier and TypeMethodDescriptionvoid
void
void
ContextAwareConnection.add
(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) void
ContextAwareConnection.add
(InputStream in, RDFFormat dataFormat, Resource... contexts) void
ContextAwareConnection.add
(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts) void
void
void
void
<E extends Exception>
voidvoid
void
void
void
ContextAwareConnection.export
(RDFHandler handler, Resource... contexts) void
ContextAwareConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) void
ContextAwareConnection.exportStatements
(Resource subj, IRI 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.ContextAwareConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) ContextAwareConnection.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) Gets all statements with a specific subject, predicate and/or object from the repository.boolean
ContextAwareConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
ContextAwareConnection.hasStatement
(Resource subj, IRI 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.private boolean
ContextAwareConnection.isAllContext
(Resource[] contexts) private boolean
ContextAwareConnection.isNilContext
(Resource[] contexts) void
<E extends Exception>
voidRemoves the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves.void
Removes the statement with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.void
Removes the supplied statement from the specified contexts in the repository.protected void
ContextAwareConnection.removeWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) long
Returns the number of (explicit) statements that are in the specified contexts in this repository. -
Uses of Resource in org.eclipse.rdf4j.repository.contextaware.config
Methods in org.eclipse.rdf4j.repository.contextaware.config that return ResourceMethods in org.eclipse.rdf4j.repository.contextaware.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.repository.evaluation
Methods in org.eclipse.rdf4j.repository.evaluation with parameters of type ResourceModifier and TypeMethodDescriptionCloseableIteration
<? extends Statement, QueryEvaluationException> RepositoryTripleSource.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.repository.event
Methods in org.eclipse.rdf4j.repository.event with parameters of type ResourceModifier and TypeMethodDescriptionboolean
RepositoryConnectionInterceptor.add
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) void
RepositoryConnectionListener.add
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) boolean
RepositoryConnectionInterceptor.clear
(RepositoryConnection conn, Resource... contexts) void
RepositoryConnectionListener.clear
(RepositoryConnection conn, Resource... contexts) boolean
RepositoryConnectionInterceptor.remove
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) void
RepositoryConnectionListener.remove
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.repository.event.base
Methods in org.eclipse.rdf4j.repository.event.base with parameters of type ResourceModifier and TypeMethodDescriptionboolean
RepositoryConnectionInterceptorAdapter.add
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) void
RepositoryConnectionListenerAdapter.add
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) void
InterceptingRepositoryConnectionWrapper.addWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) void
NotifyingRepositoryConnectionWrapper.addWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) void
void
boolean
RepositoryConnectionInterceptorAdapter.clear
(RepositoryConnection conn, Resource... contexts) void
RepositoryConnectionListenerAdapter.clear
(RepositoryConnection conn, Resource... contexts) boolean
RepositoryConnectionInterceptorAdapter.remove
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) void
RepositoryConnectionListenerAdapter.remove
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) void
InterceptingRepositoryConnectionWrapper.removeWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) void
NotifyingRepositoryConnectionWrapper.removeWithoutCommit
(Resource subj, IRI pred, Value obj, Resource... ctx) -
Uses of Resource in org.eclipse.rdf4j.repository.event.util
Methods in org.eclipse.rdf4j.repository.event.util with parameters of type ResourceModifier and TypeMethodDescriptionvoid
DebugRepositoryConnectionListener.add
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) void
DebugRepositoryConnectionListener.clear
(RepositoryConnection conn, Resource... contexts) void
DebugRepositoryConnectionListener.remove
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.repository.filters
Methods in org.eclipse.rdf4j.repository.filters with parameters of type ResourceModifier and TypeMethodDescriptionboolean
AccurateRepositoryBloomFilter.mayHaveStatement
(RepositoryConnection conn, Resource subj, IRI pred, Value obj, Resource... contexts) boolean
InaccurateRepositoryBloomFilter.mayHaveStatement
(RepositoryConnection conn, Resource subj, IRI pred, Value obj, Resource... contexts) boolean
RepositoryBloomFilter.mayHaveStatement
(RepositoryConnection conn, Resource subj, IRI pred, Value obj, Resource... ctxs) Returns true if the repository may have such a statement or false if it definitely does not. -
Uses of Resource in org.eclipse.rdf4j.repository.http
Methods in org.eclipse.rdf4j.repository.http that return types with arguments of type ResourceMethods in org.eclipse.rdf4j.repository.http with parameters of type ResourceModifier and TypeMethodDescriptionvoid
void
HTTPRepositoryConnection.add
(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) void
HTTPRepositoryConnection.add
(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts) void
void
void
protected void
HTTPRepositoryConnection.addWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) void
void
HTTPRepositoryConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) HTTPRepositoryConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) protected void
HTTPRepositoryConnection.removeWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) long
-
Uses of Resource in org.eclipse.rdf4j.repository.http.config
Methods in org.eclipse.rdf4j.repository.http.config that return ResourceMethods in org.eclipse.rdf4j.repository.http.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.repository.sail
Methods in org.eclipse.rdf4j.repository.sail that return types with arguments of type ResourceMethods in org.eclipse.rdf4j.repository.sail with parameters of type ResourceModifier and TypeMethodDescriptionprotected void
SailRepositoryConnection.addWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) void
void
SailRepositoryConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) SailRepositoryConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
SailRepositoryConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) protected void
SailRepositoryConnection.removeWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) long
-
Uses of Resource in org.eclipse.rdf4j.repository.sail.config
Methods in org.eclipse.rdf4j.repository.sail.config that return ResourceModifier and TypeMethodDescriptionMethods in org.eclipse.rdf4j.repository.sail.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.repository.sail.helpers
Fields in org.eclipse.rdf4j.repository.sail.helpers declared as ResourceModifier and TypeFieldDescriptionprivate Resource[]
RDFSailRemover.contexts
The contexts to remove the statements from.Methods in org.eclipse.rdf4j.repository.sail.helpers that return ResourceModifier and TypeMethodDescriptionResource[]
RDFSailRemover.getContexts()
Gets the contexts that this RDFRemover enforces upon all statements that are reported to it (in case enforcesContext() returns true).Methods in org.eclipse.rdf4j.repository.sail.helpers with parameters of type ResourceModifier and TypeMethodDescriptionprotected void
RDFSailInserter.addStatement
(Resource subj, IRI pred, Value obj, Resource ctxt) private void
RDFSailInserter.addStatement
(UpdateContext uc, Resource subj, IRI pred, Value obj, Resource... ctxts) void
RDFSailRemover.enforceContext
(Resource... contexts) Enforces the supplied contexts upon all statements that are reported to this RDFSailRemover. -
Uses of Resource in org.eclipse.rdf4j.repository.sparql
Methods in org.eclipse.rdf4j.repository.sparql that return types with arguments of type ResourceMethods in org.eclipse.rdf4j.repository.sparql with parameters of type ResourceModifier and TypeMethodDescriptionvoid
void
SPARQLConnection.add
(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) void
void
void
void
protected void
SPARQLConnection.addWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) protected void
SPARQLConnection.addWithoutCommit
(Statement st, Resource... contexts) void
private void
SPARQLConnection.createBGP
(StringBuilder qb, Resource subject, IRI predicate, Value object) private String
SPARQLConnection.createDeleteDataCommand
(Iterable<? extends Statement> statements, Resource... contexts) private String
SPARQLConnection.createDeletePatternCommand
(Resource subject, IRI predicate, Value object, Resource[] contexts) private String
SPARQLConnection.createInsertDataCommand
(Iterable<? extends Statement> statements, Resource... contexts) void
SPARQLConnection.exportStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts) private RepositoryResult
<Statement> SPARQLConnection.getStatementGeneral
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) SPARQLConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) private RepositoryResult
<Statement> SPARQLConnection.getStatementsQuadMode
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) private RepositoryResult
<Statement> SPARQLConnection.getStatementsSingleTriple
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
SPARQLConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) void
void
protected void
SPARQLConnection.removeWithoutCommit
(Resource subject, IRI predicate, Value object, Resource... contexts) protected void
SPARQLConnection.removeWithoutCommit
(Statement st, Resource... contexts) private void
long
protected Iteration
<Statement, QueryEvaluationException> SPARQLConnection.toStatementIteration
(TupleQueryResult iter, Resource subj, IRI pred, Value obj) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Resource in org.eclipse.rdf4j.repository.sparql.config
Methods in org.eclipse.rdf4j.repository.sparql.config that return ResourceMethods in org.eclipse.rdf4j.repository.sparql.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.repository.util
Fields in org.eclipse.rdf4j.repository.util declared as ResourceModifier and TypeFieldDescriptionprivate Resource
RDFRemover.context
The context to remove the statements from; null to indicate the null context.protected Resource[]
AbstractRDFInserter.contexts
The contexts to add the statements to.Methods in org.eclipse.rdf4j.repository.util that return ResourceModifier and TypeMethodDescriptionRDFRemover.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).Methods in org.eclipse.rdf4j.repository.util with parameters of type ResourceModifier and TypeMethodDescriptionprotected abstract void
AbstractRDFInserter.addStatement
(Resource subj, IRI pred, Value obj, Resource ctxt) protected void
RDFInserter.addStatement
(Resource subj, IRI pred, Value obj, Resource ctxt) static void
Connections.consumeRDFCollection
(RepositoryConnection conn, Resource head, Consumer<Statement> collectionConsumer, Resource... contexts) 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.static <C extends Collection<Statement>>
CConnections.getRDFCollection
(RepositoryConnection conn, Resource head, C statementCollection, Resource... contexts) Retrieve allStatement
s that together form the RDF Collection starting with the supplied starting resource.Connections.getStatement
(RepositoryConnection conn, Resource subject, IRI predicate, Value object, Resource... contexts) Retrieve a singleStatement
matching with the supplied subject, predicate, object and context(s) from the givenRepositoryConnection
. -
Uses of Resource in org.eclipse.rdf4j.rio
Methods in org.eclipse.rdf4j.rio with parameters of type ResourceModifier and TypeMethodDescriptionstatic Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, ParserConfig settings, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, RDFFormat dataFormat, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
Rio.parse
(InputStream in, RDFFormat dataFormat, ParserConfig settings, Resource... contexts) Adds RDF data from anInputStream
to aModel
, optionally to one or more named contexts.static Model
static Model
Rio.parse
(Reader reader, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, ModelFactory modelFactory, Resource... contexts) static Model
Rio.parse
(Reader reader, String baseURI, RDFFormat dataFormat, ParserConfig settings, ValueFactory valueFactory, ParseErrorListener errors, Resource... contexts) static Model
static Model
Rio.parse
(Reader reader, RDFFormat dataFormat, ParserConfig settings, Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.rio.binary
Methods in org.eclipse.rdf4j.rio.binary that return Resource -
Uses of Resource in org.eclipse.rdf4j.rio.hdt
Methods in org.eclipse.rdf4j.rio.hdt that return ResourceModifier and TypeMethodDescriptionprivate Resource
HDTParser.createSubject
(byte[] b) Create subject IRI or blank node -
Uses of Resource in org.eclipse.rdf4j.rio.helpers
Fields in org.eclipse.rdf4j.rio.helpers declared as ResourceFields in org.eclipse.rdf4j.rio.helpers with type parameters of type ResourceMethods in org.eclipse.rdf4j.rio.helpers that return ResourceModifier and TypeMethodDescriptionprotected Resource
AbstractRDFParser.createNode()
protected Resource
AbstractRDFParser.createNode
(String nodeID) RDFStarEncodingStatement.getContext()
RDFStarEncodingStatement.getSubject()
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.Methods in org.eclipse.rdf4j.rio.helpers with parameters of type ResourceModifier and TypeMethodDescriptionstatic void
NTriplesUtil.append
(Resource resource, Appendable appendable) Appends the N-Triples representation of the givenResource
to the givenAppendable
.protected Statement
AbstractRDFParser.createStatement
(Resource subj, IRI pred, Value obj) Creates a newStatement
object with the supplied components.protected Statement
AbstractRDFParser.createStatement
(Resource subj, IRI pred, Value obj, Resource context) Creates a newStatement
object with the supplied components.RDFStarDecodingValueFactory.createStatement
(Resource subject, IRI predicate, Value object) RDFStarDecodingValueFactory.createStatement
(Resource subject, IRI predicate, Value object, Resource context) RDFStarDecodingValueFactory.createTriple
(Resource subject, IRI predicate, Value object) static String
NTriplesUtil.toNTriplesString
(Resource resource) Creates an N-Triples string for the supplied resource.Constructors in org.eclipse.rdf4j.rio.helpers with parameters of type ResourceModifierConstructorDescriptionContextStatementCollector
(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. -
Uses of Resource in org.eclipse.rdf4j.rio.jsonld
Fields in org.eclipse.rdf4j.rio.jsonld with type parameters of type ResourceModifier and TypeFieldDescriptionJSONLDInternalTripleCallback.anonymousBNodeCreator
JSONLDInternalTripleCallback.namedBNodeCreator
Methods in org.eclipse.rdf4j.rio.jsonld that return ResourceModifier and TypeMethodDescriptionprivate Resource
JSONLDInternalTripleCallback.createResource
(String resource) Methods in org.eclipse.rdf4j.rio.jsonld with parameters of type ResourceModifier and TypeMethodDescriptionprivate String
JSONLDInternalRDFParser.getResourceValue
(Resource subject) Constructor parameters in org.eclipse.rdf4j.rio.jsonld with type arguments of type ResourceModifierConstructorDescriptionJSONLDInternalTripleCallback
(RDFHandler nextHandler, ValueFactory vf, ParserConfig parserConfig, ParseErrorListener parseErrorListener, Function<String, Resource> namedBNodeCreator, Supplier<Resource> anonymousBNodeCreator) JSONLDInternalTripleCallback
(RDFHandler nextHandler, ValueFactory vf, ParserConfig parserConfig, ParseErrorListener parseErrorListener, Function<String, Resource> namedBNodeCreator, Supplier<Resource> anonymousBNodeCreator) -
Uses of Resource in org.eclipse.rdf4j.rio.nquads
Fields in org.eclipse.rdf4j.rio.nquads declared as Resource -
Uses of Resource in org.eclipse.rdf4j.rio.ntriples
Fields in org.eclipse.rdf4j.rio.ntriples declared as ResourceMethods in org.eclipse.rdf4j.rio.ntriples that return Resource -
Uses of Resource in org.eclipse.rdf4j.rio.rdfjson
Fields in org.eclipse.rdf4j.rio.rdfjson declared as ResourceMethods in org.eclipse.rdf4j.rio.rdfjson with parameters of type ResourceModifier and TypeMethodDescriptionstatic 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)Method parameters in org.eclipse.rdf4j.rio.rdfjson with type arguments of type ResourceModifier and TypeMethodDescriptionstatic 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 -
Uses of Resource in org.eclipse.rdf4j.rio.rdfxml
Fields in org.eclipse.rdf4j.rio.rdfxml declared as ResourceModifier and TypeFieldDescriptionprivate Resource
RDFXMLParser.PropertyElement.lastListResource
The resource that was used to append the last part of an rdf:List.protected Resource
RDFXMLWriter.lastWrittenSubject
private final Resource
RDFXMLParser.NodeElement.resource
Methods in org.eclipse.rdf4j.rio.rdfxml that return ResourceModifier and TypeMethodDescriptionprotected Resource
RDFXMLParser.createNode
(String nodeID) RDFXMLParser.PropertyElement.getLastListResource()
private Resource
RDFXMLParser.getNodeResource
(Atts atts) Retrieves the resource of a node element (subject or object) using relevant attributes (rdf:ID, rdf:about and rdf:nodeID) from its attributes list.private Resource
RDFXMLParser.getPropertyResource
(Atts atts) Retrieves the object resource of a property element using relevant attributes (rdf:resource and rdf:nodeID) from its attributes list.RDFXMLParser.NodeElement.getResource()
Methods in org.eclipse.rdf4j.rio.rdfxml with parameters of type ResourceModifier and TypeMethodDescriptionprivate void
RDFXMLParser.reifyStatement
(Resource reifNode, Resource subj, IRI pred, Value obj) private void
RDFXMLParser.reportStatement
(Resource subject, IRI predicate, Value object) Reports a stament to the configured RDFHandlerException.void
RDFXMLParser.PropertyElement.setLastListResource
(Resource resource) Constructors in org.eclipse.rdf4j.rio.rdfxml with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.rio.rdfxml.util
Fields in org.eclipse.rdf4j.rio.rdfxml.util declared as ResourceMethods in org.eclipse.rdf4j.rio.rdfxml.util that return ResourceMethods in org.eclipse.rdf4j.rio.rdfxml.util with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.rio.trig
Fields in org.eclipse.rdf4j.rio.trig declared as ResourceModifier and TypeFieldDescriptionprivate Resource
TriGParser.context
private Resource
TriGWriter.currentContext
Methods in org.eclipse.rdf4j.rio.trig that return ResourceMethods in org.eclipse.rdf4j.rio.trig with parameters of type ResourceModifier and TypeMethodDescriptionprivate static boolean
TriGWriter.contextsEquals
(Resource context1, Resource context2) protected void
TriGParser.reportStatement
(Resource subj, IRI pred, Value obj) protected void
TriGParser.setContext
(Resource context) protected void
TriGWriter.writeStatement
(Resource subj, IRI pred, Value obj, Resource context, boolean canShortenSubject, boolean canShortenObject) -
Uses of Resource in org.eclipse.rdf4j.rio.trigstar
Methods in org.eclipse.rdf4j.rio.trigstar with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.rio.trix
Fields in org.eclipse.rdf4j.rio.trix declared as ResourceModifier and TypeFieldDescriptionprivate Resource
TriXParser.TriXSAXHandler.currentContext
private Resource
TriXWriter.currentContext
Methods in org.eclipse.rdf4j.rio.trix with parameters of type ResourceModifier and TypeMethodDescriptionprivate static boolean
TriXWriter.contextsEquals
(Resource context1, Resource context2) -
Uses of Resource in org.eclipse.rdf4j.rio.turtle
Fields in org.eclipse.rdf4j.rio.turtle declared as ResourceModifier and TypeFieldDescriptionprivate final Resource
ArrangedWriter.SubjectInContext.context
protected Resource
TurtleWriter.lastWrittenSubject
private final Resource
ArrangedWriter.SubjectInContext.subject
protected Resource
TurtleParser.subject
Fields in org.eclipse.rdf4j.rio.turtle with type parameters of type ResourceMethods in org.eclipse.rdf4j.rio.turtle that return ResourceModifier and TypeMethodDescriptionArrangedWriter.SubjectInContext.getContext()
ArrangedWriter.SubjectInContext.getSubject()
protected Resource
TurtleParser.parseCollection()
Parses a collection, e.g.protected Resource
TurtleParser.parseImplicitBlank()
Parses an implicit blank node.protected Resource
TurtleParser.parseNodeID()
Parses a blank node ID, e.g.Methods in org.eclipse.rdf4j.rio.turtle that return types with arguments of type ResourceModifier and TypeMethodDescriptionTurtleWriter.nextSubject
(Model contextData, Set<Resource> processedSubjects) Methods in org.eclipse.rdf4j.rio.turtle with parameters of type ResourceModifier and TypeMethodDescriptionprivate void
TurtleWriter.closeNestedResources
(Resource subj) private boolean
TurtleWriter.isWellFormedCollection
(Resource subj) Check that the collection started with the supplied subject node is a well-formed RDF Collection.private void
TurtleWriter.processPredicate
(Model contextData, Resource subject, IRI predicate, Set<Resource> processedSubjects, Set<IRI> processedPredicates) private void
TurtleWriter.processSubject
(Model contextData, Resource subject, Set<Resource> processedSubjects) protected void
TurtleParser.reportStatement
(Resource subj, IRI pred, Value obj) protected void
TurtleWriter.writeResource
(Resource res) Deprecated.UseTurtleWriter.writeResource(Resource, boolean)
instead.protected void
TurtleWriter.writeResource
(Resource res, boolean canShorten) protected void
TurtleWriter.writeStatement
(Resource subj, IRI pred, Value obj, Resource context, boolean canShortenSubjectBNode, boolean canShortenObjectBNode) Method parameters in org.eclipse.rdf4j.rio.turtle with type arguments of type ResourceModifier and TypeMethodDescriptionTurtleWriter.nextSubject
(Model contextData, Set<Resource> processedSubjects) private void
TurtleWriter.processPredicate
(Model contextData, Resource subject, IRI predicate, Set<Resource> processedSubjects, Set<IRI> processedPredicates) private void
TurtleWriter.processSubject
(Model contextData, Resource subject, Set<Resource> processedSubjects) Constructors in org.eclipse.rdf4j.rio.turtle with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail
Methods in org.eclipse.rdf4j.sail that return types with arguments of type ResourceModifier and TypeMethodDescriptionCloseableIteration
<? extends Resource, SailException> SailConnection.getContextIDs()
Returns the set of all unique context identifiers that are used to store statements.Methods in org.eclipse.rdf4j.sail with parameters of type ResourceModifier and TypeMethodDescriptionvoid
SailConnection.addStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) Adds a statement to the store.void
SailConnection.addStatement
(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts) Adds a statement to the store.void
Removes all statements from the specified/all contexts.CloseableIteration
<? extends Statement, SailException> SailConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) Gets all statements from the specified contexts that have a specific subject, predicate and/or object.default boolean
SailConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) Determines if the store contains any statements from the specified contexts that have a specific subject, predicate and/or object.void
SailConnection.removeStatement
(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts) Removes all statements matching the specified subject, predicate and object from the repository.void
SailConnection.removeStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) Removes all statements matching the specified subject, predicate and object from the repository.long
Returns the number of (explicit) statements in the store, or in specific contexts. -
Uses of Resource in org.eclipse.rdf4j.sail.base
Fields in org.eclipse.rdf4j.sail.base declared as ResourceModifier and TypeFieldDescriptionprivate final Resource
Changeset.SimpleStatementPattern.context
(package private) static final Resource[]
SailSourceConnection.NULL_CTX
private final Resource
Changeset.SimpleStatementPattern.subject
Fields in org.eclipse.rdf4j.sail.base with type parameters of type ResourceModifier and TypeFieldDescriptionChangeset.approvedContexts
Set of contexts of theChangeset.approved
statements.Changeset.deprecatedContexts
Set of contexts that were passed toChangeset.clear(Resource...)
.Methods in org.eclipse.rdf4j.sail.base that return ResourceModifier and TypeMethodDescriptionChangeset.SimpleStatementPattern.getContext()
Changeset.SimpleStatementPattern.getSubject()
Methods in org.eclipse.rdf4j.sail.base that return types with arguments of type ResourceModifier and TypeMethodDescriptionChangeset.getApprovedContexts()
CloseableIteration
<? extends Resource, SailException> DelegatingSailDataset.getContextIDs()
CloseableIteration
<? extends Resource, SailException> ObservingSailDataset.getContextIDs()
CloseableIteration
<? extends Resource, SailException> SailDataset.getContextIDs()
Returns the set of all unique context identifiers that are used to store statements.CloseableIteration
<? extends Resource, SailException> SailDatasetImpl.getContextIDs()
CloseableIteration
<? extends Resource, SailException> UnionSailDataset.getContextIDs()
protected CloseableIteration
<? extends Resource, SailException> SailSourceConnection.getContextIDsInternal()
Changeset.getDeprecatedContexts()
Methods in org.eclipse.rdf4j.sail.base with parameters of type ResourceModifier and TypeMethodDescriptionprivate void
SailSourceConnection.add
(Resource subj, IRI pred, Value obj, SailDataset dataset, SailSink sink, Resource... contexts) boolean
SailSourceConnection.addInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) void
SailSourceConnection.addStatement
(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts) void
void
Adds a statement to the store.void
void
Removes all statements from the specified/all contexts.void
SailSourceConnection.clearInferred
(Resource... contexts) protected void
SailSourceConnection.clearInternal
(Resource... contexts) default void
Deprecated.default boolean
SailSink.deprecateByQuery
(Resource subj, IRI pred, Value obj, Resource[] contexts) Removes all statements with the specified subject, predicate, object, and context.Changeset.getApprovedStatements
(Resource subj, IRI pred, Value obj, Resource[] contexts) Changeset.getApprovedTriples
(Resource subj, IRI pred, Value obj) CloseableIteration
<? extends Triple, QueryEvaluationException> SailDatasetTripleSource.getRdfStarTriples
(Resource subj, IRI pred, Value obj) CloseableIteration
<? extends Statement, SailException> DelegatingSailDataset.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) CloseableIteration
<? extends Statement, SailException> ObservingSailDataset.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) CloseableIteration
<? extends Statement, SailException> SailDataset.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) Gets all statements that have a specific subject, predicate and/or object.CloseableIteration
<? extends Statement, SailException> SailDatasetImpl.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) CloseableIteration
<? extends Statement, QueryEvaluationException> SailDatasetTripleSource.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) CloseableIteration
<? extends Statement, SailException> UnionSailDataset.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) protected CloseableIteration
<? extends Statement, SailException> SailSourceConnection.getStatementsInternal
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) CloseableIteration
<? extends Triple, SailException> DelegatingSailDataset.getTriples
(Resource subj, IRI pred, Value obj) default CloseableIteration
<? extends Triple, SailException> SailDataset.getTriples
(Resource subj, IRI pred, Value obj) Gets all RDF-star triples that have a specific subject, predicate and/or object.CloseableIteration
<? extends Triple, SailException> SailDatasetImpl.getTriples
(Resource subj, IRI pred, Value obj) CloseableIteration
<? extends Triple, SailException> UnionSailDataset.getTriples
(Resource subj, IRI pred, Value obj) (package private) boolean
Changeset.hasApproved
(Resource subj, IRI pred, Value obj, Resource[] contexts) (package private) boolean
Changeset.hasDeprecated
(Resource subj, IRI pred, Value obj, Resource[] contexts) private boolean
SailSourceConnection.hasStatement
(SailDataset dataset, Resource subj, IRI pred, Value obj, Resource... contexts) void
void
default void
Called to indicate matching statements have been observed and must not change their state until after thisSailSink
is committed, iff this was opened in an isolation level compatible withIsolationLevels.SERIALIZABLE
.void
Called to indicate matching statements have been observed and must not change their state until after thisSailSink
is committed, iff this was opened in an isolation level compatible withIsolationLevels.SERIALIZABLE
.private boolean
SailSourceConnection.remove
(Resource subj, IRI pred, Value obj, SailDataset dataset, SailSink sink, Resource... contexts) boolean
SailSourceConnection.removeInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) void
SailSourceConnection.removeStatement
(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts) protected long
SailSourceConnection.sizeInternal
(Resource... contexts) Constructors in org.eclipse.rdf4j.sail.base with parameters of type ResourceModifierConstructorDescriptionSimpleStatementPattern
(Resource subject, IRI predicate, Value object, Resource context, boolean allContexts) -
Uses of Resource in org.eclipse.rdf4j.sail.base.config
Methods in org.eclipse.rdf4j.sail.base.config that return ResourceMethods in org.eclipse.rdf4j.sail.base.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail.config
Methods in org.eclipse.rdf4j.sail.config that return ResourceModifier and TypeMethodDescriptionMethods in org.eclipse.rdf4j.sail.config with parameters of type ResourceModifier and TypeMethodDescriptionvoid
void
void
static SailImplConfig
SailConfigUtil.parseRepositoryImpl
(Model m, Resource implNode) -
Uses of Resource in org.eclipse.rdf4j.sail.evaluation
Methods in org.eclipse.rdf4j.sail.evaluation with parameters of type ResourceModifier and TypeMethodDescriptionCloseableIteration
<? extends Statement, QueryEvaluationException> SailTripleSource.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.sail.helpers
Fields in org.eclipse.rdf4j.sail.helpers declared as ResourceModifier and TypeFieldDescriptionprivate final Resource
AbstractSailConnection.WildStatement.context
The statement's context, if applicable.private final Resource
AbstractSailConnection.WildStatement.subject
The statement's subject.Methods in org.eclipse.rdf4j.sail.helpers that return ResourceModifier and TypeMethodDescriptionAbstractSailConnection.WildStatement.getContext()
AbstractSailConnection.WildStatement.getSubject()
Methods in org.eclipse.rdf4j.sail.helpers that return types with arguments of type ResourceModifier and TypeMethodDescriptionfinal CloseableIteration
<? extends Resource, SailException> AbstractSailConnection.getContextIDs()
CloseableIteration
<? extends Resource, SailException> SailConnectionWrapper.getContextIDs()
protected abstract CloseableIteration
<? extends Resource, SailException> AbstractSailConnection.getContextIDsInternal()
Methods in org.eclipse.rdf4j.sail.helpers with parameters of type ResourceModifier and TypeMethodDescriptionfinal void
AbstractSailConnection.addStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) void
AbstractSailConnection.addStatement
(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts) The default implementation buffers added statements until the update operation is complete.void
SailConnectionWrapper.addStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) void
SailConnectionWrapper.addStatement
(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts) protected abstract void
AbstractSailConnection.addStatementInternal
(Resource subj, IRI pred, Value obj, Resource... contexts) final void
void
protected abstract void
AbstractSailConnection.clearInternal
(Resource... contexts) final CloseableIteration
<? extends Statement, SailException> AbstractSailConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) CloseableIteration
<? extends Statement, SailException> SailConnectionWrapper.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) protected abstract CloseableIteration
<? extends Statement, SailException> AbstractSailConnection.getStatementsInternal
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) final boolean
AbstractSailConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
SailConnectionWrapper.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) protected boolean
AbstractSailConnection.hasStatementInternal
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource[] contexts) void
AbstractSailConnection.removeStatement
(UpdateContext op, Resource subj, IRI pred, Value obj, Resource... contexts) The default implementation buffers removed statements until the update operation is complete.void
SailConnectionWrapper.removeStatement
(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts) final void
AbstractSailConnection.removeStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) void
SailConnectionWrapper.removeStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) protected abstract void
AbstractSailConnection.removeStatementsInternal
(Resource subj, IRI pred, Value obj, Resource... contexts) final long
long
long
protected abstract long
AbstractSailConnection.sizeInternal
(Resource... contexts) Constructors in org.eclipse.rdf4j.sail.helpers with parameters of type ResourceModifierConstructorDescriptionWildStatement
(Resource subject, IRI predicate, Value object) Creates a new Statement with the supplied subject, predicate and object.WildStatement
(Resource subject, IRI predicate, Value object, Resource context) Creates a new Statement with the supplied subject, predicate and object for the specified associated context. -
Uses of Resource in org.eclipse.rdf4j.sail.inferencer
Methods in org.eclipse.rdf4j.sail.inferencer that return types with arguments of type ResourceModifier and TypeMethodDescriptionCloseableIteration
<? extends Resource, SailException> InferencerConnectionWrapper.getContextIDs()
CallsInferencerConnectionWrapper.flushUpdates()
before forwarding the call to the wrapped connection.Methods in org.eclipse.rdf4j.sail.inferencer with parameters of type ResourceModifier and TypeMethodDescriptionboolean
InferencerConnection.addInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) Adds an inferred statement to a specific context.boolean
InferencerConnectionWrapper.addInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) void
InferencerConnection.clearInferred
(Resource... contexts) Removes all inferred statements from the specified/all contexts.void
InferencerConnectionWrapper.clearInferred
(Resource... contexts) CloseableIteration
<? extends Statement, SailException> InferencerConnectionWrapper.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) CallsInferencerConnectionWrapper.flushUpdates()
before forwarding the call to the wrapped connection.boolean
InferencerConnectionWrapper.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
InferencerConnection.removeInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) Removes an inferred statement from a specific context.boolean
InferencerConnectionWrapper.removeInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) long
CallsInferencerConnectionWrapper.flushUpdates()
before forwarding the call to the wrapped connection. -
Uses of Resource in org.eclipse.rdf4j.sail.inferencer.fc
Fields in org.eclipse.rdf4j.sail.inferencer.fc declared as ResourceModifier and TypeFieldDescriptionprivate static final Resource[]
SchemaCachingRDFSInferencer.DEFAULT_CONTEXT
private static final Resource[]
SchemaCachingRDFSInferencerConnection.DEFAULT_CONTEXT
Fields in org.eclipse.rdf4j.sail.inferencer.fc with type parameters of type ResourceModifier and TypeFieldDescriptionSchemaCachingRDFSInferencer.calculatedDomain
SchemaCachingRDFSInferencer.calculatedDomain
SchemaCachingRDFSInferencer.calculatedProperties
SchemaCachingRDFSInferencer.calculatedProperties
SchemaCachingRDFSInferencer.calculatedRange
SchemaCachingRDFSInferencer.calculatedRange
SchemaCachingRDFSInferencer.calculatedTypes
SchemaCachingRDFSInferencer.calculatedTypes
private Collection
<Resource> SchemaCachingRDFSInferencer.properties
private Collection
<Resource> SchemaCachingRDFSInferencer.types
Methods in org.eclipse.rdf4j.sail.inferencer.fc that return types with arguments of type ResourceModifier and TypeMethodDescriptionSchemaCachingRDFSInferencer.resolveDomainTypes
(IRI predicate) SchemaCachingRDFSInferencer.resolveProperties
(Resource predicate) SchemaCachingRDFSInferencer.resolveRangeTypes
(IRI predicate) SchemaCachingRDFSInferencer.resolveTypes
(Resource value) Methods in org.eclipse.rdf4j.sail.inferencer.fc with parameters of type ResourceModifier and TypeMethodDescriptionboolean
DedupingInferencerConnection.addInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) boolean
SchemaCachingRDFSInferencerConnection.addInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) (package private) boolean
SchemaCachingRDFSInferencerConnection.addInferredStatementInternal
(Resource subj, IRI pred, Value obj, Resource... contexts) (package private) void
SchemaCachingRDFSInferencer.addProperty
(Resource property) private void
SchemaCachingRDFSInferencerConnection.addStatement
(boolean actuallyAdd, Resource subject, IRI predicate, Value object, Resource... context) void
SchemaCachingRDFSInferencerConnection.addStatement
(Resource subject, IRI predicate, Value object, Resource... contexts) void
SchemaCachingRDFSInferencerConnection.addStatement
(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts) (package private) void
void
DedupingInferencerConnection.clearInferred
(Resource... contexts) void
SchemaCachingRDFSInferencerConnection.clearInferred
(Resource... contexts) (package private) boolean
SchemaCachingRDFSInferencer.hasProperty
(Resource property) (package private) boolean
boolean
DedupingInferencerConnection.removeInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) SchemaCachingRDFSInferencer.resolveProperties
(Resource predicate) SchemaCachingRDFSInferencer.resolveTypes
(Resource value) Method parameters in org.eclipse.rdf4j.sail.inferencer.fc with type arguments of type ResourceModifier and TypeMethodDescriptionprivate void
private void
private void
SchemaCachingRDFSInferencer.calculateDomainAndRange
(Collection<Statement> rangeOrDomainStatements, Map<Resource, Set<Resource>> calculatedRangeOrDomain) private void
SchemaCachingRDFSInferencer.calculateDomainAndRange
(Collection<Statement> rangeOrDomainStatements, Map<Resource, Set<Resource>> calculatedRangeOrDomain) -
Uses of Resource in org.eclipse.rdf4j.sail.inferencer.fc.config
Methods in org.eclipse.rdf4j.sail.inferencer.fc.config that return ResourceMethods in org.eclipse.rdf4j.sail.inferencer.fc.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail.inferencer.util
Methods in org.eclipse.rdf4j.sail.inferencer.util with parameters of type ResourceModifier and TypeMethodDescriptionprotected void
RDFInferencerInserter.addStatement
(Resource subj, IRI pred, Value obj, Resource ctxt) -
Uses of Resource in org.eclipse.rdf4j.sail.lucene
Fields in org.eclipse.rdf4j.sail.lucene declared as ResourceModifier and TypeFieldDescription(package private) Resource[]
LuceneSailBuffer.ClearContextOperation.contexts
private final Resource
QuerySpec.subject
Fields in org.eclipse.rdf4j.sail.lucene with type parameters of type ResourceModifier and TypeFieldDescriptionLuceneSailBuffer.AddRemoveOperation.typeAdded
LuceneSailBuffer.AddRemoveOperation.typeRemoved
Methods in org.eclipse.rdf4j.sail.lucene that return ResourceModifier and TypeMethodDescriptionstatic Resource
SearchFields.createContext
(String idString) static Resource
SearchFields.createResource
(String idString) Parses an id-string (a serialized resource) back to a resource Inverse method ofSearchFields.getResourceID(Resource)
LuceneSailBuffer.ContextAwareStatementImpl.getContext()
Resource[]
LuceneSailBuffer.ClearContextOperation.getContexts()
protected Resource
AbstractSearchIndex.getResource
(SearchDocument document) Returns the Resource corresponding with the specified Document.LuceneSailBuffer.ContextAwareStatementImpl.getSubject()
QuerySpec.getSubject()
Methods in org.eclipse.rdf4j.sail.lucene that return types with arguments of type ResourceModifier and TypeMethodDescriptionLuceneSailBuffer.AddRemoveOperation.getTypeAdded()
LuceneSailBuffer.AddRemoveOperation.getTypeRemoved()
Methods in org.eclipse.rdf4j.sail.lucene with parameters of type ResourceModifier and TypeMethodDescriptionfinal 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.Do not search for an existing document with the same subject id.void
LuceneSailConnection.addStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) void
Deprecated.void
private void
LuceneSailConnection.clearContexts
(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.protected abstract Iterable
<? extends DocumentScore> Iterable
<? extends DocumentScore> Deprecated.Queries for the given subject or all subjects if null.void
LuceneSailConnection.removeStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) Constructors in org.eclipse.rdf4j.sail.lucene with parameters of type ResourceModifierConstructorDescriptionClearContextOperation
(Resource[] contexts) QuerySpec
(String matchesVarName, String propertyVarName, String scoreVarName, String snippetVarName, Resource subject, String queryString, IRI propertyURI) QuerySpec
(StatementPattern matchesPattern, Collection<QuerySpec.QueryParam> queryPatterns, StatementPattern scorePattern, StatementPattern typePattern, StatementPattern idPattern, Resource subject) -
Uses of Resource in org.eclipse.rdf4j.sail.lucene.config
Methods in org.eclipse.rdf4j.sail.lucene.config that return ResourceMethods in org.eclipse.rdf4j.sail.lucene.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail.memory
Methods in org.eclipse.rdf4j.sail.memory that return types with arguments of type ResourceModifier and TypeMethodDescriptionCloseableIteration
<? extends Resource, SailException> MemorySailStore.MemorySailDataset.getContextIDs()
Methods in org.eclipse.rdf4j.sail.memory with parameters of type ResourceModifier and TypeMethodDescriptionboolean
MemoryStoreConnection.addInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) private MemStatement
MemorySailStore.MemorySailSink.addStatement
(Resource subj, IRI pred, Value obj, Resource context, boolean explicit) protected void
MemoryStoreConnection.addStatementInternal
(Resource subj, IRI pred, Value obj, Resource... contexts) void
void
void
MemoryStoreConnection.clearInferred
(Resource... contexts) protected void
MemoryStoreConnection.clearInternal
(Resource... contexts) private CloseableIteration
<MemStatement, SailException> MemorySailStore.createStatementIterator
(Resource subj, IRI pred, Value obj, Boolean explicit, int snapshot, Resource... contexts) Creates a StatementIterator that contains the statements matching the specified pattern of subject, predicate, object, context.private CloseableIteration
<MemTriple, SailException> MemorySailStore.createTripleIterator
(Resource subj, IRI pred, Value obj, int snapshot) Creates a TripleIterator that contains the triples matching the specified pattern of subject, predicate, object, context.boolean
MemorySailStore.MemorySailSink.deprecateByQuery
(Resource subj, IRI pred, Value obj, Resource[] contexts) MemorySailStore.MemorySailDataset.getStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) MemorySailStore.MemorySailDataset.getTriples
(Resource subj, IRI pred, Value obj) void
boolean
MemoryStoreConnection.removeInferredStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) protected void
MemoryStoreConnection.removeStatementsInternal
(Resource subj, IRI pred, Value obj, Resource... contexts) -
Uses of Resource in org.eclipse.rdf4j.sail.memory.config
Methods in org.eclipse.rdf4j.sail.memory.config that return ResourceMethods in org.eclipse.rdf4j.sail.memory.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail.memory.model
Classes in org.eclipse.rdf4j.sail.memory.model that implement ResourceModifier and TypeClassDescriptionclass
A MemoryStore-specific extension of BNodeImpl giving it node properties.class
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.class
A MemoryStore-specific extension of Resource giving it subject statements.class
A MemoryStore-specific implementation ofTriple
.Methods in org.eclipse.rdf4j.sail.memory.model with parameters of type ResourceModifier and TypeMethodDescriptionMemValueFactory.createTriple
(Resource subject, IRI predicate, Value object) MemValueFactory.getMemResource
(Resource resource) See getMemValue() for description.MemValueFactory.getOrCreateMemResource
(Resource resource) SeeMemValueFactory.getOrCreateMemValue(Value)
for description. -
Uses of Resource in org.eclipse.rdf4j.sail.model
Methods in org.eclipse.rdf4j.sail.model with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail.shacl
Fields in org.eclipse.rdf4j.sail.shacl declared as ResourceModifier and TypeFieldDescriptionprivate static final Resource[]
ShaclValidator.ALL_CONTEXTS
private final Resource[]
ValidationSettings.dataGraph
private static Resource[]
ShaclValidator.SHAPE_CONTEXTS
Methods in org.eclipse.rdf4j.sail.shacl that return ResourceMethods in org.eclipse.rdf4j.sail.shacl with parameters of type ResourceModifier and TypeMethodDescriptionvoid
ShaclSailConnection.addStatement
(Resource subj, IRI pred, Value obj, Resource... contexts) void
ShaclSailConnection.addStatement
(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts) void
CloseableIteration
<? extends Statement, SailException> ShaclSailConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
ShaclSailConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) void
ShaclSailConnection.removeStatement
(UpdateContext modify, Resource subj, IRI pred, Value obj, Resource... contexts) void
ShaclSailConnection.removeStatements
(Resource subj, IRI pred, Value obj, Resource... contexts) void
Constructors in org.eclipse.rdf4j.sail.shacl with parameters of type ResourceModifierConstructorDescriptionValidationSettings
(Resource[] dataGraph, boolean logValidationPlans, boolean validateEntireBaseSail, boolean performanceLogging) -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast
Fields in org.eclipse.rdf4j.sail.shacl.ast declared as ResourceModifier and TypeFieldDescription(package private) Resource[]
Shape.contexts
private final Resource[]
ContextWithShape.dataGraph
private final Resource[]
ShaclSparqlConstraintFailureException.dataGraph
private Resource
ShaclProperties.id
(package private) Resource
ShaclShapeParsingException.id
private Resource
Shape.id
private Resource
ShaclProperties.ignoredProperties
private Resource
ShaclProperties.in
private Resource
ShaclProperties.languageIn
private Resource
ShaclProperties.nodeKind
private Resource
ShaclProperties.path
private Resource
ShaclProperties.qualifiedValueShape
private final Resource[]
ContextWithShape.shapeGraph
Fields in org.eclipse.rdf4j.sail.shacl.ast with type parameters of type ResourceModifier and TypeFieldDescriptionShaclProperties.and
Cache.cache
ShaclProperties.hasValueIn
ShaclProperties.node
ShaclProperties.not
private static final StatementMatcher.Variable
<Resource> StatementMatcher.NULL_SUBJECT
ShaclProperties.or
ShaclProperties.property
ShaclProperties.sparql
private final StatementMatcher.Variable
<? extends Resource> StatementMatcher.subject
ShaclProperties.target
ShaclProperties.targetClass
ShaclProperties.targetShape
ShaclProperties.xone
Methods in org.eclipse.rdf4j.sail.shacl.ast that return ResourceModifier and TypeMethodDescriptionResource[]
Shape.getContexts()
Resource[]
ContextWithShape.getDataGraph()
Resource[]
ShaclSparqlConstraintFailureException.getDataGraph()
Identifiable.getId()
ShaclProperties.getId()
ShaclShapeParsingException.getId()
Shape.getId()
ShaclProperties.getIgnoredProperties()
ShaclProperties.getIn()
ShaclProperties.getLanguageIn()
ShaclProperties.getNodeKind()
ShaclProperties.getPath()
ShaclProperties.getQualifiedValueShape()
Resource[]
ContextWithShape.getShapeGraph()
StatementMatcher.getSubjectValue()
Methods in org.eclipse.rdf4j.sail.shacl.ast that return types with arguments of type ResourceModifier and TypeMethodDescriptionShaclProperties.getAnd()
ShaclProperties.getHasValueIn()
ShaclProperties.getNode()
ShaclProperties.getNot()
ShaclProperties.getOr()
ShaclProperties.getProperty()
ShaclProperties.getSparql()
ShaclProperties.getTarget()
ShaclProperties.getTargetClass()
ShaclProperties.getTargetShape()
ShaclProperties.getXone()
Methods in org.eclipse.rdf4j.sail.shacl.ast with parameters of type ResourceModifier and TypeMethodDescriptionstatic ShaclPrefixParser.Namespaces
ShaclPrefixParser.extractNamespaces
(Resource id, ShapeSource shapeSource) NodeShape.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) PropertyShape.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) private static ShaclShapeParsingException
ShaclProperties.getExceptionForAlreadyPopulated
(Resource id, String predicate, Object existingObject, Value secondValue) private static ShaclShapeParsingException
ShaclProperties.getExceptionForCastIssue
(Resource id, String predicate, Class<?> expectedClass, Value object) private static ShaclShapeParsingException
ShaclProperties.getExceptionForLiteralFormatIssue
(Resource id, String predicate, Value object, Class<?> clazz) SparqlFragment.getRoot
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, Path path, StatementMatcher currentStatementMatcher, List<Statement> currentStatements) SparqlFragment.TraceBack.getRoot
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, Path path, StatementMatcher currentStatementMatcher, List<Statement> currentStatements) static List
<ContextWithShape> Shape.Factory.getShapesInContext
(ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache, Resource[] dataGraph, Resource[] shapesGraph) ValidationQuery.Deactivated.getValidationPlan
(SailConnection baseConnection, Resource[] dataGraph, Resource[] shapesGraphs) ValidationQuery.getValidationPlan
(SailConnection baseConnection, Resource[] dataGraph, Resource[] shapesGraphs) static void
ShaclAstLists.listToRdf
(Collection<? extends Value> values, Resource head, Model model) void
boolean
PropertyShape.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
Shape.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) private static String
ShaclShapeParsingException.resourceToString
(Resource id) private static String
ShaclSparqlConstraintFailureException.resourceToString
(Resource id) ShaclAstLists.toList
(ShapeSource shapeSource, Resource head) ShaclAstLists.toList
(ShapeSource shapeSource, Resource head, Class<T> type) void
void
void
void
Method parameters in org.eclipse.rdf4j.sail.shacl.ast with type arguments of type ResourceModifier and TypeMethodDescriptionboolean
StatementMatcher.hasSubject
(StatementMatcher.Variable<Resource> variable) void
void
void
void
void
Constructors in org.eclipse.rdf4j.sail.shacl.ast with parameters of type ResourceModifierConstructorDescriptionContextWithShape
(Resource[] dataGraph, Resource[] shapeGraph, Shape shape) ShaclProperties
(Resource id, ShapeSource connection) ShaclShapeParsingException
(String msg, Throwable t, Resource id) ShaclShapeParsingException
(String msg, Resource id) ShaclSparqlConstraintFailureException
(Shape shape, String query, BindingSet resultBindingSet, Value focusNode, Resource[] dataGraph) Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast with type arguments of type ResourceModifierConstructorDescriptionStatementMatcher
(StatementMatcher.Variable<? extends Resource> subject, StatementMatcher.Variable<IRI> predicate, StatementMatcher.Variable<? extends Value> object, Targetable origin, Set<String> inheritedVarNames) -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents
Fields in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents declared as ResourceModifier and TypeFieldDescriptionprivate Resource
AbstractConstraintComponent.id
private Resource
SimpleAbstractConstraintComponent.id
Fields in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type parameters of type ResourceMethods in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents that return ResourceModifier and TypeMethodDescriptionAbstractConstraintComponent.getId()
SimpleAbstractConstraintComponent.getId()
Methods in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with parameters of type ResourceModifier and TypeMethodDescriptionAbstractConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) AndConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) ClassConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) ConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) DashHasValueInConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) HasValueConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) MaxCountConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) MinCountConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) NotConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) OrConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) QualifiedMaxCountConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) QualifiedMinCountConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) SimpleAbstractConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) SparqlConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) UniqueLangConstraintComponent.getAllTargetsPlan
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
AbstractConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
AndConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
ClassConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
ConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
NotConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
OrConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
QualifiedMaxCountConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) boolean
QualifiedMinCountConstraintComponent.requiresEvaluation
(ConnectionsGroup connectionsGroup, ConstraintComponent.Scope scope, Resource[] dataGraph, StatementMatcher.StableRandomVariableProvider stableRandomVariableProvider) void
AndConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
ClassConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
ClosedConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
DashHasValueInConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
DatatypeConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
DisjointConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
EqualsConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
HasValueConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
InConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
LanguageInConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
LessThanConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
LessThanOrEqualsConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxExclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxInclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxLengthConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinExclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinInclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinLengthConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
NodeKindConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
NotConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
OrConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
PatternConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
QualifiedMaxCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
QualifiedMinCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
SparqlConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
UniqueLangConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
XoneConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) Method parameters in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type arguments of type ResourceModifier and TypeMethodDescriptionvoid
AndConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
ClassConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
ClosedConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
DashHasValueInConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
DatatypeConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
DisjointConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
EqualsConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
HasValueConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
InConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
LanguageInConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
LessThanConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
LessThanOrEqualsConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxExclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxInclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MaxLengthConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinExclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinInclusiveConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
MinLengthConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
NodeKindConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
NotConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
OrConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
PatternConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
QualifiedMaxCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
QualifiedMinCountConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
SparqlConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
UniqueLangConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) void
XoneConstraintComponent.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) Constructors in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with parameters of type ResourceModifierConstructorDescriptionAndConstraintComponent
(Resource id, ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache) ClosedConstraintComponent
(ShapeSource shapeSource, List<Resource> property, Resource ignoredProperties) DashHasValueInConstraintComponent
(ShapeSource shapeSource, Resource hasValueIn) InConstraintComponent
(ShapeSource shapeSource, Resource in) LanguageInConstraintComponent
(ShapeSource shapeSource, Resource languageIn) NodeKindConstraintComponent
(Resource nodeKind) NotConstraintComponent
(Resource id, ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache) OrConstraintComponent
(Resource id, ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache) QualifiedMaxCountConstraintComponent
(Resource id, ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache, Boolean qualifiedValueShapesDisjoint, Long qualifiedMaxCount) QualifiedMinCountConstraintComponent
(Resource id, ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache, Boolean qualifiedValueShapesDisjoint, Long qualifiedMinCount) SparqlConstraintComponent
(Resource id, Shape shape, boolean produceValidationReports, String select, String originalSelect, List<Literal> message, Boolean deactivated, Set<Namespace> namespaces, Model prefixes) SparqlConstraintComponent
(Resource id, ShapeSource shapeSource, Shape shape) XoneConstraintComponent
(Resource id, ShapeSource shapeSource, Shape.ParseSettings parseSettings, Cache cache) Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.constraintcomponents with type arguments of type ResourceModifierConstructorDescriptionClosedConstraintComponent
(ShapeSource shapeSource, List<Resource> property, Resource ignoredProperties) -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.paths
Fields in org.eclipse.rdf4j.sail.shacl.ast.paths declared as ResourceModifier and TypeFieldDescriptionprivate final Resource
AlternativePath.alternativePathId
(package private) Resource
Path.id
Methods in org.eclipse.rdf4j.sail.shacl.ast.paths that return ResourceMethods in org.eclipse.rdf4j.sail.shacl.ast.paths with parameters of type ResourceModifier and TypeMethodDescriptionstatic Path
Path.buildPath
(ShapeSource shapeSource, Resource id) AlternativePath.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) InversePath.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) OneOrMorePath.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) abstract PlanNode
Path.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) Get all values added in this transaction.SequencePath.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) SimplePath.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) ZeroOrMorePath.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) ZeroOrOnePath.getAllAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) AlternativePath.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) InversePath.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) OneOrMorePath.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) abstract PlanNode
Path.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) Get values added in this transaction.SequencePath.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) SimplePath.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) ZeroOrMorePath.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) ZeroOrOnePath.getAnyAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNodeWrapper planNodeWrapper) void
void
void
void
void
void
void
Method parameters in org.eclipse.rdf4j.sail.shacl.ast.paths with type arguments of type ResourceModifier and TypeMethodDescriptionvoid
void
void
void
void
void
void
Constructors in org.eclipse.rdf4j.sail.shacl.ast.paths with parameters of type ResourceModifierConstructorDescriptionAlternativePath
(Resource id, Resource alternativePathId, List<Path> paths) AlternativePath
(Resource id, Resource paths, ShapeSource shapeSource) InversePath
(Resource id, Resource path, ShapeSource shapeSource) InversePath
(Resource id, Path path) OneOrMorePath
(Resource id, Resource path, ShapeSource shapeSource) OneOrMorePath
(Resource id, Path path) SequencePath
(Resource id, List<Path> paths) SequencePath
(Resource id, ShapeSource shapeSource) ZeroOrMorePath
(Resource id, Resource path, ShapeSource shapeSource) ZeroOrMorePath
(Resource id, Path path) ZeroOrOnePath
(Resource id, Resource path, ShapeSource shapeSource) ZeroOrOnePath
(Resource id, Path path) -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.planNodes
Fields in org.eclipse.rdf4j.sail.shacl.ast.planNodes declared as ResourceModifier and TypeFieldDescriptionprivate static final Resource[]
BulkedExternalInnerJoin.allContext
private final Resource[]
AllTargetsPlanNode.AllTargetsBindingSetMapper.contexts
private final Resource[]
ValidationTuple.contexts
private final Resource[]
BulkedExternalInnerJoin.dataGraph
private final Resource[]
BulkedExternalLeftOuterJoin.dataGraph
private final Resource[]
FilterByPredicate.dataGraph
private final Resource[]
FilterByPredicateObject.dataGraph
private final Resource[]
FilterTargetIsObject.dataGraph
private final Resource[]
FilterTargetIsSubject.dataGraph
private final Resource[]
SparqlConstraintSelect.dataGraph
private final Resource[]
UnorderedSelect.dataGraph
private static final Resource[]
ValidationTuple.NULL_CONTEXT
private final Resource
UnorderedSelect.subject
Fields in org.eclipse.rdf4j.sail.shacl.ast.planNodes with type parameters of type ResourceMethods in org.eclipse.rdf4j.sail.shacl.ast.planNodes that return ResourceMethods in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type ResourceModifier and TypeMethodDescriptionstatic Dataset
PlanNodeHelper.asDefaultGraphDataset
(Resource[] dataGraph) private List
<BindingSet> AbstractBulkJoinPlanNode.buildBindingSets
(ArrayDeque<ValidationTuple> left, SailConnection connection, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection, Resource[] dataGraph) static Function
<BindingSet, ValidationTuple> BulkedExternalInnerJoin.getMapper
(String a, String c, ConstraintComponent.Scope scope, Resource[] dataGraph) private boolean
(package private) void
AbstractBulkJoinPlanNode.runQuery
(ArrayDeque<ValidationTuple> left, ArrayDeque<ValidationTuple> right, SailConnection connection, TupleExpr parsedQuery, Dataset dataset, Resource[] dataGraph, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection) Constructors in org.eclipse.rdf4j.sail.shacl.ast.planNodes with parameters of type ResourceModifierConstructorDescriptionAllTargetsBindingSetMapper
(List<String> varNames, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts) AllTargetsPlanNode
(SailConnection sailConnection, Resource[] dataGraph, ArrayDeque<EffectiveTarget.EffectiveTargetFragment> chain, List<StatementMatcher.Variable<Value>> vars, ConstraintComponent.Scope scope) BindSelect
(SailConnection connection, Resource[] dataGraph, SparqlFragment query, List<StatementMatcher.Variable<Value>> vars, PlanNode source, List<String> varNames, ConstraintComponent.Scope scope, int bulkSize, EffectiveTarget.Extend direction, boolean includePropertyShapeValues) BulkedExternalInnerJoin
(PlanNode leftNode, SailConnection connection, Resource[] dataGraph, SparqlFragment query, boolean skipBasedOnPreviousConnection, SailConnection previousStateConnection, Function<BindingSet, ValidationTuple> mapper) BulkedExternalLeftOuterJoin
(PlanNode leftNode, SailConnection connection, Resource[] dataGraph, SparqlFragment query, Function<BindingSet, ValidationTuple> mapper) ExternalFilterByQuery
(SailConnection connection, Resource[] dataGraph, PlanNode parent, SparqlFragment queryFragment, StatementMatcher.Variable queryVariable, Function<ValidationTuple, Value> filterOn) FilterByPredicate
(SailConnection connection, Set<IRI> filterOnPredicates, PlanNode parent, FilterByPredicate.On on, Resource[] dataGraph) FilterByPredicateObject
(SailConnection connection, Resource[] dataGraph, IRI filterOnPredicate, Set<Resource> filterOnObject, PlanNode parent, boolean returnMatching, FilterByPredicateObject.FilterOn filterOn, boolean includeInferred) FilterTargetIsObject
(SailConnection connection, Resource[] dataGraph, PlanNode parent) FilterTargetIsSubject
(SailConnection connection, Resource[] dataGraph, PlanNode parent) Select
(SailConnection connection, String query, Function<BindingSet, ValidationTuple> mapper, Resource[] dataGraph) Select
(SailConnection connection, SparqlFragment queryFragment, String orderBy, Function<BindingSet, ValidationTuple> mapper, Resource[] dataGraph) SparqlConstraintSelect
(SailConnection connection, PlanNode targets, String query, ConstraintComponent.Scope scope, Resource[] dataGraph, boolean produceValidationReports, SparqlConstraintComponent constraintComponent, Shape shape) UnorderedSelect
(SailConnection connection, Resource subject, IRI predicate, Value object, Resource[] dataGraph, BiFunction<Statement, Resource[], ValidationTuple> mapper) ValidationTuple
(List<Value> chain, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts) private
ValidationTuple
(List<ValidationResult> validationResults, Value[] chain, ConstraintComponent.Scope scope, boolean propertyShapeScopeWithValue, Set<ValidationTuple> compressedTuples, Resource[] contexts) ValidationTuple
(Value[] chain, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts) ValidationTuple
(Value a, Value c, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts) ValidationTuple
(Value subject, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts) ValidationTuple
(BindingSet bindingSet, String[] variables, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts) ValidationTuple
(BindingSet bindingSet, List<String> variables, ConstraintComponent.Scope scope, boolean hasValue, Resource[] contexts) ValuesBackedNode
(SortedSet<Value> values, ConstraintComponent.Scope scope, Resource[] dataGraph) Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.planNodes with type arguments of type ResourceModifierConstructorDescriptionFilterByPredicateObject
(SailConnection connection, Resource[] dataGraph, IRI filterOnPredicate, Set<Resource> filterOnObject, PlanNode parent, boolean returnMatching, FilterByPredicateObject.FilterOn filterOn, boolean includeInferred) -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.ast.targets
Fields in org.eclipse.rdf4j.sail.shacl.ast.targets declared as ResourceModifier and TypeFieldDescriptionprivate final Resource[]
EffectiveTarget.ActiveTargetTupleMapper.dataGraph
private final Resource[]
TargetChainRetriever.dataGraph
private final Resource
DashAllObjects.id
private final Resource
DashAllSubjects.id
private final Resource
SparqlTarget.id
private final Resource[]
TargetNode.sourceContexts
Fields in org.eclipse.rdf4j.sail.shacl.ast.targets with type parameters of type ResourceMethods in org.eclipse.rdf4j.sail.shacl.ast.targets with parameters of type ResourceModifier and TypeMethodDescriptionboolean
EffectiveTarget.couldMatch
(ConnectionsGroup connectionsGroup, Resource[] dataGraph) EffectiveTarget.extend
(PlanNode source, ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, EffectiveTarget.Extend direction, boolean includePropertyShapeValues, Function<PlanNode, PlanNode> filter) DashAllObjects.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) DashAllSubjects.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) RSXTargetShape.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) SparqlTarget.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) abstract PlanNode
Target.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) TargetClass.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) TargetNode.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) TargetObjectsOf.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) TargetSubjectsOf.getAdded
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) private PlanNode
DashAllObjects.getAddedRemovedInner
(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope) private PlanNode
DashAllSubjects.getAddedRemovedInner
(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope) private PlanNode
RSXTargetShape.getAddedRemovedInner
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) private PlanNode
TargetClass.getAddedRemovedInner
(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope) private PlanNode
TargetObjectsOf.getAddedRemovedInner
(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope) private PlanNode
TargetSubjectsOf.getAddedRemovedInner
(SailConnection connection, Resource[] dataGraph, ConstraintComponent.Scope scope) EffectiveTarget.getAllTargets
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope) EffectiveTarget.getPlanNode
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, ConstraintComponent.Scope scope, boolean includeTargetsAffectedByRemoval, Function<PlanNode, PlanNode> filter) EffectiveTarget.EffectiveTargetFragment.getRoot
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, StatementMatcher currentStatementMatcher, Statement currentStatement) DashAllObjects.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) DashAllSubjects.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) EffectiveTarget.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) RSXTargetShape.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) SparqlTarget.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) abstract PlanNode
Target.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) TargetClass.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) TargetNode.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) TargetObjectsOf.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) TargetSubjectsOf.getTargetFilter
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, PlanNode parent) void
void
void
void
void
void
void
void
TargetSubjectsOf.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) Method parameters in org.eclipse.rdf4j.sail.shacl.ast.targets with type arguments of type ResourceModifier and TypeMethodDescriptionvoid
void
void
void
void
void
void
void
TargetSubjectsOf.toModel
(Resource subject, IRI predicate, Model model, Set<Resource> cycleDetection) Constructors in org.eclipse.rdf4j.sail.shacl.ast.targets with parameters of type ResourceModifierConstructorDescriptionActiveTargetTupleMapper
(ConstraintComponent.Scope scope, boolean includePropertyShapeValues, Resource[] dataGraph) RSXTargetShape
(Resource targetShape, ShapeSource shapeSource, Shape.ParseSettings parseSettings) SparqlTarget
(Resource id, ShapeSource shapeSource) TargetChainRetriever
(ConnectionsGroup connectionsGroup, Resource[] dataGraph, List<StatementMatcher> statementMatchers, List<StatementMatcher> removedStatementMatchers, EffectiveTarget.EffectiveTargetFragment removedStatementTarget, SparqlFragment queryFragment, List<StatementMatcher.Variable<Value>> vars, ConstraintComponent.Scope scope, boolean hasValue) TargetNode
(TreeSet<Value> targetNodes, Resource[] sourceContexts) Constructor parameters in org.eclipse.rdf4j.sail.shacl.ast.targets with type arguments of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.config
Methods in org.eclipse.rdf4j.sail.shacl.config that return ResourceMethods in org.eclipse.rdf4j.sail.shacl.config with parameters of type Resource -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.results
Fields in org.eclipse.rdf4j.sail.shacl.results declared as ResourceModifier and TypeFieldDescriptionprivate final Resource[]
ValidationResult.dataGraphs
Deprecated.protected Resource
ValidationReport.id
Deprecated.private Resource
ValidationResult.id
Deprecated.private final Resource[]
ValidationResult.shapesGraphs
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results that return ResourceModifier and TypeMethodDescriptionprotected Resource[]
ValidationResult.getDataGraphs()
Deprecated.final Resource
ValidationReport.getId()
Deprecated.final Resource
ValidationResult.getId()
Deprecated.protected Resource[]
ValidationResult.getShapesGraphs()
Deprecated.Methods in org.eclipse.rdf4j.sail.shacl.results that return types with arguments of type ResourceMethods in org.eclipse.rdf4j.sail.shacl.results with parameters of type ResourceMethod parameters in org.eclipse.rdf4j.sail.shacl.results with type arguments of type ResourceModifier and TypeMethodDescriptionDeprecated.Constructors in org.eclipse.rdf4j.sail.shacl.results with parameters of type ResourceModifierConstructorDescriptionValidationResult
(Value focusNode, Value value, Shape shape, ConstraintComponent sourceConstraint, Severity severity, ConstraintComponent.Scope scope, Resource[] dataGraphs, Resource[] shapesGraphs) Deprecated. -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.wrapper.data
Fields in org.eclipse.rdf4j.sail.shacl.wrapper.data with type parameters of type ResourceModifier and TypeFieldDescriptionRdfsSubClassOfReasoner.backwardsChainCache
RdfsSubClassOfReasoner.backwardsChainCache
RdfsSubClassOfReasoner.forwardChainCache
RdfsSubClassOfReasoner.forwardChainCache
private final Collection
<Resource> RdfsSubClassOfReasoner.types
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.data that return types with arguments of type ResourceMethods in org.eclipse.rdf4j.sail.shacl.wrapper.data with parameters of type ResourceModifier and TypeMethodDescriptionRdfsSubClassOfReasoner.backwardsChain
(Resource type) CloseableIteration
<? extends Statement, SailException> VerySimpleRdfsBackwardsChainingConnection.getStatements
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) boolean
VerySimpleRdfsBackwardsChainingConnection.hasStatement
(Resource subj, IRI pred, Value obj, boolean includeInferred, Resource... contexts) Method parameters in org.eclipse.rdf4j.sail.shacl.wrapper.data with type arguments of type ResourceModifier and TypeMethodDescriptionprivate void
RdfsSubClassOfReasoner.forwardChainUntilFixPoint
(Map<Resource, Set<Resource>> forwardChainCache) private void
RdfsSubClassOfReasoner.forwardChainUntilFixPoint
(Map<Resource, Set<Resource>> forwardChainCache) -
Uses of Resource in org.eclipse.rdf4j.sail.shacl.wrapper.shape
Fields in org.eclipse.rdf4j.sail.shacl.wrapper.shape declared as ResourceModifier and TypeFieldDescriptionprivate static final Resource[]
ShapeSource.ShapesGraph.allContext
private final Resource[]
BackwardChainingShapeSource.context
private final Resource[]
CombinedShapeSource.context
private final Resource[]
Rdf4jShaclShapeGraphShapeSource.context
private final Resource[]
RepositoryConnectionShapeSource.context
private final Resource[]
SailConnectionShapeSource.context
private final Resource[]
ShapeSource.ShapesGraph.dataGraph
private final Resource[]
ShapeSource.ShapesGraph.shapesGraph
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape that return ResourceModifier and TypeMethodDescriptionResource[]
BackwardChainingShapeSource.getActiveContexts()
Resource[]
CombinedShapeSource.getActiveContexts()
Resource[]
Rdf4jShaclShapeGraphShapeSource.getActiveContexts()
Resource[]
RepositoryConnectionShapeSource.getActiveContexts()
Resource[]
SailConnectionShapeSource.getActiveContexts()
Resource[]
ShapeSource.getActiveContexts()
Resource[]
ShapeSource.ShapesGraph.getDataGraph()
BackwardChainingShapeSource.getRdfRest
(Resource subject) CombinedShapeSource.getRdfRest
(Resource subject) Rdf4jShaclShapeGraphShapeSource.getRdfRest
(Resource subject) RepositoryConnectionShapeSource.getRdfRest
(Resource subject) SailConnectionShapeSource.getRdfRest
(Resource subject) ShapeSource.getRdfRest
(Resource subject) (package private) static Resource
ShapeSourceHelper.getRdfRest
(RepositoryConnection connection, Resource subject, Resource[] context) (package private) static Resource
ShapeSourceHelper.getRdfRest
(SailConnection connection, Resource subject, Resource[] context) Resource[]
ShapeSource.ShapesGraph.getShapesGraph()
private static Resource
ShapeSource.ShapesGraph.handleDefaultGraph
(Resource graph) Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape that return types with arguments of type ResourceModifier and TypeMethodDescriptionSailConnectionShapeSource.getContext
(ShapeSource.Predicates predicate) BackwardChainingShapeSource.getSubjects
(ShapeSource.Predicates predicate) CombinedShapeSource.getSubjects
(ShapeSource.Predicates predicate) Rdf4jShaclShapeGraphShapeSource.getSubjects
(ShapeSource.Predicates predicate) RepositoryConnectionShapeSource.getSubjects
(ShapeSource.Predicates predicate) SailConnectionShapeSource.getSubjects
(ShapeSource.Predicates predicate) ShapeSource.getSubjects
(ShapeSource.Predicates predicate) BackwardChainingShapeSource.getTargetableShape()
CombinedShapeSource.getTargetableShape()
Rdf4jShaclShapeGraphShapeSource.getTargetableShape()
RepositoryConnectionShapeSource.getTargetableShape()
SailConnectionShapeSource.getTargetableShape()
ShapeSource.getTargetableShape()
Methods in org.eclipse.rdf4j.sail.shacl.wrapper.shape with parameters of type ResourceModifier and TypeMethodDescriptionBackwardChainingShapeSource.getAllStatements
(Resource id) CombinedShapeSource.getAllStatements
(Resource id) Rdf4jShaclShapeGraphShapeSource.getAllStatements
(Resource id) RepositoryConnectionShapeSource.getAllStatements
(Resource id) SailConnectionShapeSource.getAllStatements
(Resource id) ShapeSource.getAllStatements
(Resource id) (package private) static Value
ShapeSourceHelper.getFirst
(RepositoryConnection connection, Resource subject, Resource[] context) (package private) static Value
ShapeSourceHelper.getFirst
(SailConnection connection, Resource subject, Resource[] context) BackwardChainingShapeSource.getObjects
(Resource subject, ShapeSource.Predicates predicate) CombinedShapeSource.getObjects
(Resource subject, ShapeSource.Predicates predicate) Rdf4jShaclShapeGraphShapeSource.getObjects
(Resource subject, ShapeSource.Predicates predicate) RepositoryConnectionShapeSource.getObjects
(Resource subject, ShapeSource.Predicates predicate) SailConnectionShapeSource.getObjects
(Resource subject, ShapeSource.Predicates predicate) ShapeSource.getObjects
(Resource subject, ShapeSource.Predicates predicate) BackwardChainingShapeSource.getRdfFirst
(Resource subject) CombinedShapeSource.getRdfFirst
(Resource subject) Rdf4jShaclShapeGraphShapeSource.getRdfFirst
(Resource subject) RepositoryConnectionShapeSource.getRdfFirst
(Resource subject) SailConnectionShapeSource.getRdfFirst
(Resource subject) ShapeSource.getRdfFirst
(Resource subject) BackwardChainingShapeSource.getRdfRest
(Resource subject) CombinedShapeSource.getRdfRest
(Resource subject) Rdf4jShaclShapeGraphShapeSource.getRdfRest
(Resource subject) RepositoryConnectionShapeSource.getRdfRest
(Resource subject) SailConnectionShapeSource.getRdfRest
(Resource subject) ShapeSource.getRdfRest
(Resource subject) (package private) static Resource
ShapeSourceHelper.getRdfRest
(RepositoryConnection connection, Resource subject, Resource[] context) (package private) static Resource
ShapeSourceHelper.getRdfRest
(SailConnection connection, Resource subject, Resource[] context) static Stream
<ShapeSource.ShapesGraph> ShapeSource.getRsxDataAndShapesGraphLink
(RepositoryConnection connection, Resource[] context) static Stream
<ShapeSource.ShapesGraph> ShapeSource.getRsxDataAndShapesGraphLink
(SailConnection connection, Resource[] context) private static Resource
ShapeSource.ShapesGraph.handleDefaultGraph
(Resource graph) private boolean
BackwardChainingShapeSource.isNodeShapeOrPropertyShape
(Resource id) boolean
boolean
boolean
boolean
boolean
boolean
BackwardChainingShapeSource.withContext
(Resource[] context) CombinedShapeSource.withContext
(Resource[] context) Rdf4jShaclShapeGraphShapeSource.withContext
(Resource[] context) RepositoryConnectionShapeSource.withContext
(Resource[] context) SailConnectionShapeSource.withContext
(Resource[] context) ShapeSource.withContext
(Resource[] context) Constructors in org.eclipse.rdf4j.sail.shacl.wrapper.shape with parameters of type ResourceModifierConstructorDescriptionprivate
BackwardChainingShapeSource
(SailConnection connection, Resource[] context) private
CombinedShapeSource
(RepositoryConnection shapesForForwardChainingConnection, SailConnection sailConnection, Resource[] context) private
CombinedShapeSource
(SailConnection shapesForForwardChainingConnection, SailConnection sailConnection, Resource[] context) private
CombinedShapeSource
(Rdf4jShaclShapeGraphShapeSource rdf4jShapesGraph, BackwardChainingShapeSource baseSail, Resource[] context) private
Rdf4jShaclShapeGraphShapeSource
(Repository repository, RepositoryConnection connection, Resource[] context) private
RepositoryConnectionShapeSource
(RepositoryConnection connection, Resource[] context) private
SailConnectionShapeSource
(SailConnection connection, Resource[] context) ShapesGraph
(Resource dataGraph, List<? extends Statement> shapesGraph) Constructor parameters in org.eclipse.rdf4j.sail.shacl.wrapper.shape with type arguments of type Resource -
Uses of Resource in org.eclipse.rdf4j.sparqlbuilder.graphpattern
Methods in org.eclipse.rdf4j.sparqlbuilder.graphpattern with parameters of type ResourceModifier and TypeMethodDescriptionstatic TriplePattern
static TriplePattern
Create a triple pattern with the given subject, predicate, and object(s)static TriplePattern
GraphPatterns.tp
(Resource subject, RdfPredicate predicate, Value... objects) static TriplePattern
GraphPatterns.tp
(Resource subject, RdfPredicate predicate, RdfObject... objects) Create a triple pattern with the given subject, predicate, and object(s) -
Uses of Resource in org.eclipse.rdf4j.spin
Fields in org.eclipse.rdf4j.spin declared as ResourceModifier and TypeFieldDescription(package private) Resource
SpinRenderer.ListContext.list
(package private) Resource
SpinRenderer.SpinVisitor.list
(package private) Resource
SpinRenderer.ListContext.subject
(package private) Resource
SpinRenderer.SpinVisitor.subject
Fields in org.eclipse.rdf4j.spin with type parameters of type ResourceMethods in org.eclipse.rdf4j.spin that return ResourceMethods in org.eclipse.rdf4j.spin with parameters of type ResourceModifier and TypeMethodDescriptionprivate int
SpinParser.getMaxIterationCount
(Resource ruleProp, TripleSource store) SpinParser.getNextRules
(Resource ruleProp, TripleSource store) private String
SpinParser.SpinVisitor.getVarName
(Resource r) boolean
SpinParser.isThisUnbound
(Resource subj, TripleSource store) (package private) SpinRenderer.ListContext
private void
SpinRenderer.SpinVisitor.nextListEntry
(Resource nextEntry) protected ParsedOperation
SpinParser.parse
(Resource queryResource, IRI queryClass, TripleSource store) SpinParser.parse
(Resource queryResource, TripleSource store) SpinParser.parseAskQuery
(Resource queryResource, TripleSource store) SpinParser.parseConstraintViolation
(Resource subj, TripleSource store) SpinParser.parseConstructQuery
(Resource queryResource, TripleSource store) SpinParser.parseDescribeQuery
(Resource queryResource, TripleSource store) SpinParser.parseQuery
(Resource queryResource, TripleSource store) private ParsedOperation
SpinParser.parseRDF
(Resource queryResource, IRI queryType, TripleSource store) SpinParser.parseSelectQuery
(Resource queryResource, TripleSource store) private ParsedOperation
SpinParser.parseText
(Resource queryResource, IRI queryType, TripleSource store) SpinParser.parseUpdate
(Resource queryResource, TripleSource store) private ValueExpr
SpinParser.SpinVisitor.toValueExpr
(Resource r, IRI func) void
private void
void
SpinParser.SpinVisitor.visitClear
(Resource query) void
SpinParser.SpinVisitor.visitConstruct
(Resource construct) void
SpinParser.SpinVisitor.visitCreate
(Resource query) private void
SpinParser.SpinVisitor.visitDelete
(Resource delete) void
SpinParser.SpinVisitor.visitDeleteData
(Resource query) void
SpinParser.SpinVisitor.visitDeleteWhere
(Resource query) void
SpinParser.SpinVisitor.visitDescribe
(Resource describe) private void
SpinParser.SpinVisitor.visitFilter
(Resource r) private void
SpinParser.SpinVisitor.visitGroupBy
(Resource groupby) SpinParser.SpinVisitor.visitGroupGraphPattern
(Resource group) private TupleExpr
SpinParser.SpinVisitor.visitHaving
(Resource having) private void
SpinParser.SpinVisitor.visitInsert
(Resource insert) void
SpinParser.SpinVisitor.visitInsertData
(Resource query) void
void
SpinParser.SpinVisitor.visitModify
(Resource query) private Order
SpinParser.SpinVisitor.visitOrderBy
(Resource orderby) private OrderElem
SpinParser.SpinVisitor.visitOrderByCondition
(Resource r) private void
SpinParser.SpinVisitor.visitPattern
(Resource r, Set<IRI> types, TupleExpr currentGroupExpr) private ProjectionElem
SpinParser.SpinVisitor.visitResultNode
(Resource r) private Projection
SpinParser.SpinVisitor.visitResultNodes
(Resource resultNodes) private ProjectionElem
SpinParser.SpinVisitor.visitResultVariable
(Resource r, Map<String, ProjectionElem> previousProjElems) private Projection
SpinParser.SpinVisitor.visitResultVariables
(Resource resultVars, Map<String, ProjectionElem> previousProjElems) void
SpinParser.SpinVisitor.visitSelect
(Resource select) private ProjectionElemList
SpinParser.SpinVisitor.visitTemplate
(Resource r) private UnaryTupleOperator
SpinParser.SpinVisitor.visitTemplates
(Resource templates) SpinParser.SpinVisitor.visitWhere
(Resource query) Constructors in org.eclipse.rdf4j.spin with parameters of type ResourceModifierConstructorDescription(package private)
AskVisitor
(RDFHandler handler, Resource list, Dataset dataset) (package private)
ConstructVisitor
(RDFHandler handler, Resource subject, Dataset dataset) (package private)
DescribeVisitor
(RDFHandler handler, Resource subject, Dataset dataset) (package private)
ListContext
(Resource list, Resource subject) (package private)
SpinVisitor
(RDFHandler handler, Resource list, Resource subject, Dataset dataset) -
Uses of Resource in org.eclipse.rdf4j.spin.function
Methods in org.eclipse.rdf4j.spin.function with parameters of type ResourceModifier and TypeMethodDescriptionprivate boolean
EvalFunction.isQuery
(Resource r, TripleSource store)
Statements.statement(Triple, Resource)
instead