Uses of Interface
org.openrdf.model.Resource

Packages that use Resource
org.openrdf   
org.openrdf.http.client   
org.openrdf.http.protocol   
org.openrdf.http.protocol.transaction.operations   
org.openrdf.http.server   
org.openrdf.model RDF model interfaces. 
org.openrdf.model.impl Default implementations of the RDF model interfaces. 
org.openrdf.model.util   
org.openrdf.query.algebra.evaluation   
org.openrdf.repository The Repository API: the main API for handling Sesame repositories. 
org.openrdf.repository.base   
org.openrdf.repository.config   
org.openrdf.repository.contextaware   
org.openrdf.repository.contextaware.config   
org.openrdf.repository.event   
org.openrdf.repository.event.base   
org.openrdf.repository.event.util   
org.openrdf.repository.http.config   
org.openrdf.repository.sail Repository implementation for local storage backends. 
org.openrdf.repository.sail.config   
org.openrdf.repository.util   
org.openrdf.rio.helpers Provides helpers classes for Rio. 
org.openrdf.rio.ntriples Parser and writer for RDF in N-Triples format. 
org.openrdf.rio.rdfxml Parser and writer for XML-serialized RDF. 
org.openrdf.rio.trig Parser and writer for RDF in TriG format. 
org.openrdf.rio.turtle Parser and writer for RDF in Turtle format. 
org.openrdf.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API for RDF repositories. 
org.openrdf.sail.config   
org.openrdf.sail.helpers Generic utility classes for RDF Sail implementations. 
org.openrdf.sail.inferencer   
org.openrdf.sail.memory An implementation of the RDF SAIL API that uses main memory for storage. 
org.openrdf.sail.memory.config   
org.openrdf.sail.memory.model Classes implementing the storage model of the MemoryStore. 
org.openrdf.sail.nativerdf Native RDF storage backend. 
org.openrdf.sail.nativerdf.config   
org.openrdf.sail.nativerdf.model   
org.openrdf.sail.rdbms   
org.openrdf.sail.rdbms.algebra   
org.openrdf.sail.rdbms.config   
org.openrdf.sail.rdbms.evaluation   
org.openrdf.sail.rdbms.model   
org.openrdf.workbench.util   
 

Uses of Resource in org.openrdf
 

Methods in org.openrdf with parameters of type Resource
static void OpenRDFUtil.verifyContextNotNull(Resource... contexts)
          Verifies that the supplied contexts parameter is not null, throwing an IllegalArgumentException if it is.
 

Uses of Resource in org.openrdf.http.client
 

Methods in org.openrdf.http.client with parameters of type Resource
 void HTTPClient.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 void HTTPClient.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 long HTTPClient.size(Resource... contexts)
           
 void HTTPClient.upload(InputStream contents, String baseURI, RDFFormat dataFormat, boolean overwrite, Resource... contexts)
           
 void HTTPClient.upload(Reader contents, String baseURI, RDFFormat dataFormat, boolean overwrite, Resource... contexts)
           
protected  void HTTPClient.upload(org.apache.commons.httpclient.methods.RequestEntity reqEntity, String baseURI, boolean overwrite, Resource... contexts)
           
 

Uses of Resource in org.openrdf.http.protocol
 

Methods in org.openrdf.http.protocol that return Resource
static Resource Protocol.decodeContext(String encodedValue, ValueFactory valueFactory)
          Decode a previously encoded context Resource.
static Resource[] Protocol.decodeContexts(String[] encodedValues, ValueFactory valueFactory)
          Decode previously encoded contexts.
static Resource Protocol.decodeResource(String encodedValue, ValueFactory valueFactory)
          Decode a previously encoded Resource.
 

Methods in org.openrdf.http.protocol with parameters of type Resource
static String Protocol.encodeContext(Resource context)
          Encodes a context resource for use in a URL.
static String[] Protocol.encodeContexts(Resource... contexts)
          Encode context resources for use in a URL.
 

Uses of Resource in org.openrdf.http.protocol.transaction.operations
 

Fields in org.openrdf.http.protocol.transaction.operations declared as Resource
protected  Resource[] ContextOperation.contexts
           
 

Methods in org.openrdf.http.protocol.transaction.operations that return Resource
 Resource[] ContextOperation.getContexts()
           
 Resource StatementOperation.getSubject()
           
 

Methods in org.openrdf.http.protocol.transaction.operations with parameters of type Resource
 void ContextOperation.setContexts(Resource... contexts)
           
 void StatementOperation.setSubject(Resource subject)
           
 

Constructors in org.openrdf.http.protocol.transaction.operations with parameters of type Resource
AddStatementOperation(Resource subj, URI pred, Value obj, Resource... contexts)
          Create an AddStatementOperation.
AddStatementOperation(Resource subj, URI pred, Value obj, Resource... contexts)
          Create an AddStatementOperation.
ClearOperation(Resource... contexts)
           
ContextOperation(Resource... contexts)
           
RemoveStatementsOperation(Resource subj, URI pred, Value obj, Resource... contexts)
          Creates a RemoveStatementsOperation.
RemoveStatementsOperation(Resource subj, URI pred, Value obj, Resource... contexts)
          Creates a RemoveStatementsOperation.
StatementOperation(Resource... contexts)
           
 

Uses of Resource in org.openrdf.http.server
 

Methods in org.openrdf.http.server that return Resource
static Resource[] ProtocolUtil.parseContextParam(javax.servlet.http.HttpServletRequest request, String paramName, ValueFactory vf)
           
static Resource ProtocolUtil.parseResourceParam(javax.servlet.http.HttpServletRequest request, String paramName, ValueFactory vf)
           
 

Uses of Resource in org.openrdf.model
 

Subinterfaces of Resource in org.openrdf.model
 interface BNode
          A blank node (aka bnode, aka anonymous node).
 interface URI
          A URI.
 

Methods in org.openrdf.model that return Resource
 Resource Statement.getContext()
          Gets the context of this statement.
 Resource Statement.getSubject()
          Gets the subject of this statement.
 

Methods in org.openrdf.model with parameters of type Resource
 boolean Graph.add(Resource subj, URI pred, Value obj, Resource... contexts)
          Adds one or more statements to the graph.
 boolean Graph.add(Resource subj, URI pred, Value obj, Resource... contexts)
          Adds one or more statements to the graph.
 Statement ValueFactory.createStatement(Resource subject, URI predicate, Value object)
          Creates a new statement with the supplied subject, predicate and object.
 Statement ValueFactory.createStatement(Resource subject, URI predicate, Value object, Resource context)
          Creates a new statement with the supplied subject, predicate and object and associated context.
 Iterator<Statement> Graph.match(Resource subj, URI pred, Value obj, Resource... contexts)
          Gets the statements with the specified subject, predicate, object and (optionally) context.
 Iterator<Statement> Graph.match(Resource subj, URI pred, Value obj, Resource... contexts)
          Gets the statements with the specified subject, predicate, object and (optionally) context.
 

Uses of Resource in org.openrdf.model.impl
 

Classes in org.openrdf.model.impl that implement Resource
 class BNodeImpl
          An implementation of the BNode interface.
 class URIImpl
          The default implementation of the URI interface.
 

Methods in org.openrdf.model.impl that return Resource
 Resource StatementImpl.getContext()
           
 Resource ContextStatementImpl.getContext()
           
 Resource StatementImpl.getSubject()
           
 

Methods in org.openrdf.model.impl with parameters of type Resource
 boolean GraphImpl.add(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean GraphImpl.add(Resource subj, URI pred, Value obj, Resource... contexts)
           
 Statement ValueFactoryImpl.createStatement(Resource subject, URI predicate, Value object)
           
 Statement ValueFactoryImpl.createStatement(Resource subject, URI predicate, Value object, Resource context)
           
 Iterator<Statement> GraphImpl.match(Resource subj, URI pred, Value obj, Resource... contexts)
           
 Iterator<Statement> GraphImpl.match(Resource subj, URI pred, Value obj, Resource... contexts)
           
 

Constructors in org.openrdf.model.impl with parameters of type Resource
ContextStatementImpl(Resource subject, URI predicate, Value object, Resource context)
          Creates a new Statement with the supplied subject, predicate and object for the specified associated context.
StatementImpl(Resource subject, URI predicate, Value object)
          Creates a new Statement with the supplied subject, predicate and object.
 

Uses of Resource in org.openrdf.model.util
 

Methods in org.openrdf.model.util that return Resource
static Resource GraphUtil.getOptionalObjectResource(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a Resource, or throws a GraphUtilException if that value is not a Resource.
static Resource GraphUtil.getOptionalSubject(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statement(s) with the specified predicate and object from the specified contexts in the supplied graph.
static Resource GraphUtil.getUniqueObjectResource(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a Resource, or throws a GraphUtilException if that value is not a Resource.
static Resource GraphUtil.getUniqueSubject(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statement(s) with the specified predicate and object from the specified contexts in the supplied graph.
 

Methods in org.openrdf.model.util that return types with arguments of type Resource
static Iterator<Resource> GraphUtil.getSubjectIterator(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statements with the specified predicate, object and (optionally) contexts from the supplied graph.
static Set<Resource> GraphUtil.getSubjects(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statements with the specified predicate, object and (optionally) contexts from the supplied graph.
 

Methods in org.openrdf.model.util with parameters of type Resource
static Iterator<Value> GraphUtil.getObjectIterator(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the objects of the statements with the specified subject, predicate and (optionally) contexts from the supplied graph.
static Iterator<Value> GraphUtil.getObjectIterator(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the objects of the statements with the specified subject, predicate and (optionally) contexts from the supplied graph.
static Set<Value> GraphUtil.getObjects(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the objects of the statements with the specified subject, predicate and (optionally) contexts from the supplied graph.
static Set<Value> GraphUtil.getObjects(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the objects of the statements with the specified subject, predicate and (optionally) contexts from the supplied graph.
static Value GraphUtil.getOptionalObject(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the object of the statement(s) with the specified subject and predicate from the specified contexts in the supplied graph.
static Value GraphUtil.getOptionalObject(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the object of the statement(s) with the specified subject and predicate from the specified contexts in the supplied graph.
static Literal GraphUtil.getOptionalObjectLiteral(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a Literal, or throws a GraphUtilException if that value is not a Literal.
static Resource GraphUtil.getOptionalObjectResource(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a Resource, or throws a GraphUtilException if that value is not a Resource.
static URI GraphUtil.getOptionalObjectURI(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getOptionalObject(Graph, Resource, URI, Resource[]) to a URI, or throws a GraphUtilException if that value is not a URI.
static Resource GraphUtil.getOptionalSubject(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statement(s) with the specified predicate and object from the specified contexts in the supplied graph.
static URI GraphUtil.getOptionalSubjectURI(Graph graph, URI pred, Value obj, Resource... contexts)
          Utility method that casts the return value of GraphUtil.getOptionalSubject(Graph, URI, Value, Resource[]) to a URI, or throws a GraphUtilException if that value is not a URI.
static Iterator<Resource> GraphUtil.getSubjectIterator(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statements with the specified predicate, object and (optionally) contexts from the supplied graph.
static Set<Resource> GraphUtil.getSubjects(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statements with the specified predicate, object and (optionally) contexts from the supplied graph.
static Value GraphUtil.getUniqueObject(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the object of the statement(s) with the specified subject and predicate from the specified contexts in the supplied graph.
static Value GraphUtil.getUniqueObject(Graph graph, Resource subj, URI pred, Resource... contexts)
          Gets the object of the statement(s) with the specified subject and predicate from the specified contexts in the supplied graph.
static Literal GraphUtil.getUniqueObjectLiteral(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a Literal, or throws a GraphUtilException if that value is not a Literal.
static Resource GraphUtil.getUniqueObjectResource(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a Resource, or throws a GraphUtilException if that value is not a Resource.
static URI GraphUtil.getUniqueObjectURI(Graph graph, Resource subj, URI pred)
          Utility method that casts the return value of GraphUtil.getUniqueObject(Graph, Resource, URI, Resource[]) to a URI, or throws a GraphUtilException if that value is not a URI.
static Resource GraphUtil.getUniqueSubject(Graph graph, URI pred, Value obj, Resource... contexts)
          Gets the subject of the statement(s) with the specified predicate and object from the specified contexts in the supplied graph.
static URI GraphUtil.getUniqueSubjectURI(Graph graph, URI pred, Value obj, Resource... contexts)
          Utility method that casts the return value of GraphUtil.getUniqueSubject(Graph, URI, Value, Resource[]) to a URI, or throws a GraphUtilException if that value is not a URI.
static void GraphUtil.remove(Graph graph, Resource subj, URI pred, Value obj, Resource... contexts)
          Utility method that removes all statements matching the specified criteria from a graph.
static void GraphUtil.remove(Graph graph, Resource subj, URI pred, Value obj, Resource... contexts)
          Utility method that removes all statements matching the specified criteria from a graph.
static void GraphUtil.setUniqueObject(Graph graph, Resource subj, URI pred, Value obj, Resource... contexts)
          Adds the specified statement and makes sure that no other statements are present in the Graph with the same subject and predicate.
static void GraphUtil.setUniqueObject(Graph graph, Resource subj, URI pred, Value obj, Resource... contexts)
          Adds the specified statement and makes sure that no other statements are present in the Graph with the same subject and predicate.
 

Uses of Resource in org.openrdf.query.algebra.evaluation
 

Methods in org.openrdf.query.algebra.evaluation with parameters of type Resource
 CloseableIteration<? extends Statement,QueryEvaluationException> TripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
          Gets all statements that have a specific subject, predicate and/or object.
 CloseableIteration<? extends Statement,QueryEvaluationException> TripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
          Gets all statements that have a specific subject, predicate and/or object.
 

Uses of Resource in org.openrdf.repository
 

Methods in org.openrdf.repository that return types with arguments of type Resource
 RepositoryResult<Resource> RepositoryConnection.getContextIDs()
          Gets all resources that are used as content identifiers.
 

Methods in org.openrdf.repository with parameters of type Resource
 void RepositoryConnection.add(File file, String baseURI, RDFFormat dataFormat, Resource... contexts)
          Adds RDF data from the specified file to a specific contexts in the repository.
 void RepositoryConnection.add(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts)
          Adds RDF data from an InputStream to the repository, optionally to one or more named contexts.
 void RepositoryConnection.add(Iterable<? extends Statement> statements, Resource... contexts)
          Adds the supplied statements to this repository, optionally to one or more named contexts.
<E extends Exception>
void
RepositoryConnection.add(Iteration<? extends Statement,E> statementIter, Resource... contexts)
          Adds the supplied statements to this repository, optionally to one or more named contexts.
 void RepositoryConnection.add(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts)
          Adds RDF data from a Reader to the repository, optionally to one or more named contexts.
 void RepositoryConnection.add(Resource subject, URI predicate, Value object, Resource... contexts)
          Adds a statement with the specified subject, predicate and object to this repository, optionally to one or more named contexts.
 void RepositoryConnection.add(Resource subject, URI predicate, Value object, Resource... contexts)
          Adds a statement with the specified subject, predicate and object to this repository, optionally to one or more named contexts.
 void RepositoryConnection.add(Statement st, Resource... contexts)
          Adds the supplied statement to this repository, optionally to one or more named contexts.
 void RepositoryConnection.add(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts)
          Adds the RDF data that can be found at the specified URL to the repository, optionally to one or more named contexts.
 void RepositoryConnection.clear(Resource... contexts)
          Removes all statements from a specific contexts in the repository.
 void RepositoryConnection.export(RDFHandler handler, Resource... contexts)
          Exports all explicit statements in the specified contexts to the supplied RDFHandler.
 void RepositoryConnection.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
          Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts.
 void RepositoryConnection.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
          Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts.
 RepositoryResult<Statement> RepositoryConnection.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Gets all statements with a specific subject, predicate and/or object from the repository.
 RepositoryResult<Statement> RepositoryConnection.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Gets all statements with a specific subject, predicate and/or object from the repository.
 boolean RepositoryConnection.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts.
 boolean RepositoryConnection.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts.
 boolean RepositoryConnection.hasStatement(Statement st, boolean includeInferred, Resource... contexts)
          Checks whether the repository contains the specified statement, optionally in the specified contexts.
 void RepositoryConnection.remove(Iterable<? extends Statement> statements, Resource... contexts)
          Removes the supplied statements from the specified contexts in this repository.
<E extends Exception>
void
RepositoryConnection.remove(Iteration<? extends Statement,E> statementIter, Resource... contexts)
          Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves.
 void RepositoryConnection.remove(Resource subject, URI predicate, Value object, Resource... contexts)
          Removes the statement(s) with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.
 void RepositoryConnection.remove(Resource subject, URI predicate, Value object, Resource... contexts)
          Removes the statement(s) with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.
 void RepositoryConnection.remove(Statement st, Resource... contexts)
          Removes the supplied statement from the specified contexts in the repository.
 long RepositoryConnection.size(Resource... contexts)
          Returns the number of (explicit) statements that are in the specified contexts in this repository.
 

Uses of Resource in org.openrdf.repository.base
 

Methods in org.openrdf.repository.base that return types with arguments of type Resource
 RepositoryResult<Resource> RepositoryConnectionWrapper.getContextIDs()
           
 

Methods in org.openrdf.repository.base with parameters of type Resource
 void RepositoryConnectionWrapper.add(File file, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void RepositoryConnectionBase.add(File file, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void RepositoryConnectionWrapper.add(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void RepositoryConnectionBase.add(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void RepositoryConnectionWrapper.add(Iterable<? extends Statement> statements, Resource... contexts)
           
 void RepositoryConnectionBase.add(Iterable<? extends Statement> statements, Resource... contexts)
           
<E extends Exception>
void
RepositoryConnectionWrapper.add(Iteration<? extends Statement,E> statementIter, Resource... contexts)
           
<E extends Exception>
void
RepositoryConnectionBase.add(Iteration<? extends Statement,E> statementIter, Resource... contexts)
           
 void RepositoryConnectionWrapper.add(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void RepositoryConnectionBase.add(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void RepositoryConnectionWrapper.add(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionWrapper.add(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionBase.add(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionBase.add(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionWrapper.add(Statement st, Resource... contexts)
           
 void RepositoryConnectionBase.add(Statement st, Resource... contexts)
           
 void RepositoryConnectionWrapper.add(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void RepositoryConnectionBase.add(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
protected  void RepositoryConnectionBase.addInputStreamOrReader(Object inputStreamOrReader, String baseURI, RDFFormat dataFormat, Resource... contexts)
          Adds the data that can be read from the supplied InputStream or Reader to this repository.
protected  void RepositoryConnectionWrapper.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected  void RepositoryConnectionWrapper.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected abstract  void RepositoryConnectionBase.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected abstract  void RepositoryConnectionBase.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected  void RepositoryConnectionBase.addWithoutCommit(Statement st, Resource... contexts)
           
 void RepositoryConnectionWrapper.clear(Resource... contexts)
           
 void RepositoryConnectionBase.clear(Resource... contexts)
           
 void RepositoryConnectionBase.export(RDFHandler handler, Resource... contexts)
           
 void RepositoryConnectionWrapper.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 void RepositoryConnectionWrapper.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 RepositoryResult<Statement> RepositoryConnectionWrapper.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 RepositoryResult<Statement> RepositoryConnectionWrapper.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean RepositoryConnectionWrapper.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean RepositoryConnectionWrapper.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean RepositoryConnectionBase.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean RepositoryConnectionBase.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean RepositoryConnectionWrapper.hasStatement(Statement st, boolean includeInferred, Resource... contexts)
           
 boolean RepositoryConnectionBase.hasStatement(Statement st, boolean includeInferred, Resource... contexts)
           
 void RepositoryConnectionWrapper.remove(Iterable<? extends Statement> statements, Resource... contexts)
           
 void RepositoryConnectionBase.remove(Iterable<? extends Statement> statements, Resource... contexts)
           
<E extends Exception>
void
RepositoryConnectionWrapper.remove(Iteration<? extends Statement,E> statementIter, Resource... contexts)
           
<E extends Exception>
void
RepositoryConnectionBase.remove(Iteration<? extends Statement,E> statementIter, Resource... contexts)
           
 void RepositoryConnectionWrapper.remove(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionWrapper.remove(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionBase.remove(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionBase.remove(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionWrapper.remove(Statement st, Resource... contexts)
           
 void RepositoryConnectionBase.remove(Statement st, Resource... contexts)
           
protected  void RepositoryConnectionWrapper.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected  void RepositoryConnectionWrapper.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected abstract  void RepositoryConnectionBase.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected abstract  void RepositoryConnectionBase.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected  void RepositoryConnectionBase.removeWithoutCommit(Statement st, Resource... contexts)
           
 long RepositoryConnectionWrapper.size(Resource... contexts)
           
 

Uses of Resource in org.openrdf.repository.config
 

Methods in org.openrdf.repository.config that return Resource
 Resource RepositoryImplConfigBase.export(Graph graph)
           
 Resource RepositoryImplConfig.export(Graph graph)
           
 Resource DelegatingRepositoryImplConfigBase.export(Graph graph)
           
static Resource RepositoryConfigUtil.getContext(RepositoryConnection con, String repositoryID)
           
 

Methods in org.openrdf.repository.config with parameters of type Resource
static RepositoryImplConfig RepositoryImplConfigBase.create(Graph graph, Resource implNode)
           
static RepositoryConfig RepositoryConfig.create(Graph graph, Resource repositoryNode)
          Creates a new RepositoryConfig object and initializes it by supplying the graph and repositoryNode to its parse method.
 void RepositoryImplConfigBase.parse(Graph graph, Resource implNode)
           
 void RepositoryImplConfig.parse(Graph graph, Resource implNode)
           
 void RepositoryConfig.parse(Graph graph, Resource repositoryNode)
           
 void DelegatingRepositoryImplConfigBase.parse(Graph graph, Resource implNode)
           
 

Uses of Resource in org.openrdf.repository.contextaware
 

Methods in org.openrdf.repository.contextaware with parameters of type Resource
 void ContextAwareConnection.add(File file, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void ContextAwareConnection.add(InputStream in, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void ContextAwareConnection.add(Iterable<? extends Statement> statements, Resource... contexts)
           
<E extends Exception>
void
ContextAwareConnection.add(Iteration<? extends Statement,E> statementIter, Resource... contexts)
           
 void ContextAwareConnection.add(Reader reader, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void ContextAwareConnection.add(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void ContextAwareConnection.add(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void ContextAwareConnection.add(Statement st, Resource... contexts)
           
 void ContextAwareConnection.add(URL url, String baseURI, RDFFormat dataFormat, Resource... contexts)
           
 void ContextAwareConnection.clear(Resource... contexts)
           
 void ContextAwareConnection.export(RDFHandler handler, Resource... contexts)
           
 void ContextAwareConnection.exportStatements(Resource subj, URI pred, Value obj, RDFHandler handler, Resource... contexts)
          Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts.
 void ContextAwareConnection.exportStatements(Resource subj, URI pred, Value obj, RDFHandler handler, Resource... contexts)
          Exports all statements with a specific subject, predicate and/or object from the repository, optionally from the specified contexts.
 RepositoryResult<Statement> ContextAwareConnection.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
          Gets all statements with a specific subject, predicate and/or object from the repository.
 RepositoryResult<Statement> ContextAwareConnection.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
          Gets all statements with a specific subject, predicate and/or object from the repository.
 boolean ContextAwareConnection.hasStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts.
 boolean ContextAwareConnection.hasStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Checks whether the repository contains statements with a specific subject, predicate and/or object, optionally in the specified contexts.
 boolean ContextAwareConnection.hasStatement(Statement st, Resource... contexts)
          Checks whether the repository contains the specified statement, optionally in the specified contexts.
 void ContextAwareConnection.remove(Iterable<? extends Statement> statements, Resource... contexts)
           
<E extends Exception>
void
ContextAwareConnection.remove(Iteration<? extends Statement,E> statementIter, Resource... contexts)
          Removes the supplied statements from a specific context in this repository, ignoring any context information carried by the statements themselves.
 void ContextAwareConnection.remove(Resource subject, URI predicate, Value object, Resource... contexts)
          Removes the statement with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.
 void ContextAwareConnection.remove(Resource subject, URI predicate, Value object, Resource... contexts)
          Removes the statement with the specified subject, predicate and object from the repository, optionally restricted to the specified contexts.
 void ContextAwareConnection.remove(Statement st, Resource... contexts)
          Removes the supplied statement from the specified contexts in the repository.
protected  void ContextAwareConnection.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected  void ContextAwareConnection.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 long ContextAwareConnection.size(Resource... contexts)
          Returns the number of (explicit) statements that are in the specified contexts in this repository.
 

Uses of Resource in org.openrdf.repository.contextaware.config
 

Methods in org.openrdf.repository.contextaware.config that return Resource
 Resource ContextAwareConfig.export(Graph graph)
           
 

Methods in org.openrdf.repository.contextaware.config with parameters of type Resource
 void ContextAwareConfig.parse(Graph graph, Resource implNode)
           
 

Uses of Resource in org.openrdf.repository.event
 

Methods in org.openrdf.repository.event with parameters of type Resource
 void RepositoryConnectionListener.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionListener.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptor.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptor.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionListener.clear(RepositoryConnection conn, Resource... contexts)
           
 boolean RepositoryConnectionInterceptor.clear(RepositoryConnection conn, Resource... contexts)
           
 void RepositoryConnectionListener.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionListener.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptor.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptor.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 

Uses of Resource in org.openrdf.repository.event.base
 

Methods in org.openrdf.repository.event.base with parameters of type Resource
 void RepositoryConnectionListenerAdapter.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionListenerAdapter.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptorAdapter.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptorAdapter.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void NotifyingRepositoryConnectionWrapper.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void NotifyingRepositoryConnectionWrapper.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void InterceptingRepositoryConnectionWrapper.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void InterceptingRepositoryConnectionWrapper.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionListenerAdapter.clear(RepositoryConnection conn, Resource... contexts)
           
 boolean RepositoryConnectionInterceptorAdapter.clear(RepositoryConnection conn, Resource... contexts)
           
 void NotifyingRepositoryConnectionWrapper.clear(Resource... contexts)
           
 void InterceptingRepositoryConnectionWrapper.clear(Resource... contexts)
           
 void RepositoryConnectionListenerAdapter.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void RepositoryConnectionListenerAdapter.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptorAdapter.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 boolean RepositoryConnectionInterceptorAdapter.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void NotifyingRepositoryConnectionWrapper.removeWithoutCommit(Resource subj, URI pred, Value obj, Resource... ctx)
           
 void NotifyingRepositoryConnectionWrapper.removeWithoutCommit(Resource subj, URI pred, Value obj, Resource... ctx)
           
 void InterceptingRepositoryConnectionWrapper.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void InterceptingRepositoryConnectionWrapper.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 

Uses of Resource in org.openrdf.repository.event.util
 

Methods in org.openrdf.repository.event.util with parameters of type Resource
 void DebugRepositoryConnectionListener.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void DebugRepositoryConnectionListener.add(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void DebugRepositoryConnectionListener.clear(RepositoryConnection conn, Resource... contexts)
           
 void DebugRepositoryConnectionListener.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 void DebugRepositoryConnectionListener.remove(RepositoryConnection conn, Resource subject, URI predicate, Value object, Resource... contexts)
           
 

Uses of Resource in org.openrdf.repository.http.config
 

Methods in org.openrdf.repository.http.config that return Resource
 Resource HTTPRepositoryConfig.export(Graph graph)
           
 

Methods in org.openrdf.repository.http.config with parameters of type Resource
 void HTTPRepositoryConfig.parse(Graph graph, Resource implNode)
           
 

Uses of Resource in org.openrdf.repository.sail
 

Methods in org.openrdf.repository.sail that return types with arguments of type Resource
 RepositoryResult<Resource> SailRepositoryConnection.getContextIDs()
           
 

Methods in org.openrdf.repository.sail with parameters of type Resource
protected  void SailRepositoryConnection.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected  void SailRepositoryConnection.addWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 void SailRepositoryConnection.clear(Resource... contexts)
           
 void SailRepositoryConnection.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 void SailRepositoryConnection.exportStatements(Resource subj, URI pred, Value obj, boolean includeInferred, RDFHandler handler, Resource... contexts)
           
 RepositoryResult<Statement> SailRepositoryConnection.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 RepositoryResult<Statement> SailRepositoryConnection.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
protected  void SailRepositoryConnection.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
protected  void SailRepositoryConnection.removeWithoutCommit(Resource subject, URI predicate, Value object, Resource... contexts)
           
 long SailRepositoryConnection.size(Resource... contexts)
           
 

Uses of Resource in org.openrdf.repository.sail.config
 

Methods in org.openrdf.repository.sail.config that return Resource
 Resource SailRepositoryConfig.export(Graph graph)
           
 

Methods in org.openrdf.repository.sail.config with parameters of type Resource
 void SailRepositoryConfig.parse(Graph graph, Resource repImplNode)
           
 

Uses of Resource in org.openrdf.repository.util
 

Methods in org.openrdf.repository.util that return Resource
 Resource RDFRemover.getContext()
          Gets the context identifier that this RDFRemover enforces upon all statements that are reported to it (in case enforcesContext() returns true).
 Resource[] RDFInserter.getContexts()
          Gets the contexts that this RDFInserter enforces upon all statements that are reported to it (in case enforcesContext() returns true).
 

Methods in org.openrdf.repository.util with parameters of type Resource
 void RDFInserter.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.
 

Uses of Resource in org.openrdf.rio.helpers
 

Methods in org.openrdf.rio.helpers with parameters of type Resource
protected  Statement RDFParserBase.createStatement(Resource subj, URI pred, Value obj)
          Creates a new Statement object with the supplied components.
protected  Statement RDFParserBase.createStatement(Resource subj, URI pred, Value obj, Resource context)
          Creates a new Statement object with the supplied components.
 

Uses of Resource in org.openrdf.rio.ntriples
 

Methods in org.openrdf.rio.ntriples that return Resource
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.openrdf.rio.ntriples with parameters of type Resource
static String NTriplesUtil.toNTriplesString(Resource resource)
          Creates an N-Triples string for the supplied resource.
 

Uses of Resource in org.openrdf.rio.rdfxml
 

Fields in org.openrdf.rio.rdfxml declared as Resource
protected  Resource RDFXMLWriter.lastWrittenSubject
           
 

Uses of Resource in org.openrdf.rio.trig
 

Methods in org.openrdf.rio.trig with parameters of type Resource
protected  void TriGParser.reportStatement(Resource subj, URI pred, Value obj)
           
 

Uses of Resource in org.openrdf.rio.turtle
 

Fields in org.openrdf.rio.turtle declared as Resource
protected  Resource TurtleWriter.lastWrittenSubject
           
 

Methods in org.openrdf.rio.turtle that return Resource
protected  Resource TurtleParser.parseCollection()
          Parses a collection, e.g.
protected  Resource TurtleParser.parseImplicitBlank()
          Parses an implicit blank node.
 

Methods in org.openrdf.rio.turtle with parameters of type Resource
protected  void TurtleParser.reportStatement(Resource subj, URI pred, Value obj)
           
protected  void TurtleWriter.writeResource(Resource res)
           
 

Uses of Resource in org.openrdf.sail
 

Methods in org.openrdf.sail that return types with arguments of type Resource
 CloseableIteration<? extends Resource,SailException> SailConnection.getContextIDs()
          Returns the set of all unique context identifiers that are used to store statements.
 

Methods in org.openrdf.sail with parameters of type Resource
 void SailConnection.addStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Adds a statement to each context in the specified contexts.
 void SailConnection.addStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Adds a statement to each context in the specified contexts.
 void SailConnection.clear(Resource... contexts)
          Removes all statements from the specified/all contexts.
 CloseableIteration<? extends Statement,SailException> SailConnection.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Gets all statements from the specified contexts that have a specific subject, predicate and/or object.
 CloseableIteration<? extends Statement,SailException> SailConnection.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Gets all statements from the specified contexts that have a specific subject, predicate and/or object.
 void SailConnection.removeStatements(Resource subj, URI pred, Value obj, Resource... contexts)
          Removes all statements matching the specified subject, predicate and object from the repository.
 void SailConnection.removeStatements(Resource subj, URI pred, Value obj, Resource... contexts)
          Removes all statements matching the specified subject, predicate and object from the repository.
 long SailConnection.size(Resource... contexts)
          Returns the number of (explicit) statements.
 

Uses of Resource in org.openrdf.sail.config
 

Methods in org.openrdf.sail.config that return Resource
 Resource SailImplConfigBase.export(Graph graph)
           
 Resource SailImplConfig.export(Graph graph)
           
 Resource DelegatingSailImplConfigBase.export(Graph graph)
           
 

Methods in org.openrdf.sail.config with parameters of type Resource
 void SailImplConfigBase.parse(Graph graph, Resource implNode)
           
 void SailImplConfig.parse(Graph graph, Resource implNode)
           
 void DelegatingSailImplConfigBase.parse(Graph graph, Resource implNode)
           
static SailImplConfig SailConfigUtil.parseRepositoryImpl(Graph graph, Resource implNode)
           
 

Uses of Resource in org.openrdf.sail.helpers
 

Methods in org.openrdf.sail.helpers that return types with arguments of type Resource
 CloseableIteration<? extends Resource,SailException> SailConnectionWrapper.getContextIDs()
           
 CloseableIteration<? extends Resource,SailException> SailConnectionBase.getContextIDs()
           
protected abstract  CloseableIteration<? extends Resource,SailException> SailConnectionBase.getContextIDsInternal()
           
 

Methods in org.openrdf.sail.helpers with parameters of type Resource
 void SailConnectionWrapper.addStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void SailConnectionWrapper.addStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void SailConnectionBase.addStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void SailConnectionBase.addStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected abstract  void SailConnectionBase.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected abstract  void SailConnectionBase.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void SailConnectionWrapper.clear(Resource... contexts)
           
 void SailConnectionBase.clear(Resource... contexts)
           
protected abstract  void SailConnectionBase.clearInternal(Resource... contexts)
           
 CloseableIteration<? extends Statement,SailException> SailConnectionWrapper.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 CloseableIteration<? extends Statement,SailException> SailConnectionWrapper.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 CloseableIteration<? extends Statement,SailException> SailConnectionBase.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 CloseableIteration<? extends Statement,SailException> SailConnectionBase.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
protected abstract  CloseableIteration<? extends Statement,SailException> SailConnectionBase.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
protected abstract  CloseableIteration<? extends Statement,SailException> SailConnectionBase.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 void SailConnectionWrapper.removeStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void SailConnectionWrapper.removeStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void SailConnectionBase.removeStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void SailConnectionBase.removeStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected abstract  void SailConnectionBase.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected abstract  void SailConnectionBase.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
 long SailConnectionWrapper.size(Resource... contexts)
           
 long SailConnectionBase.size(Resource... contexts)
           
 long SailConnectionWrapper.size(Resource context)
           
protected abstract  long SailConnectionBase.sizeInternal(Resource... contexts)
           
 

Uses of Resource in org.openrdf.sail.inferencer
 

Methods in org.openrdf.sail.inferencer that return types with arguments of type Resource
 CloseableIteration<? extends Resource,SailException> InferencerConnectionWrapper.getContextIDs()
          Calls InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped connection.
 

Methods in org.openrdf.sail.inferencer with parameters of type Resource
 boolean InferencerConnectionWrapper.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean InferencerConnectionWrapper.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean InferencerConnection.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Adds an inferred statement to a specific context.
 boolean InferencerConnection.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Adds an inferred statement to a specific context.
 void InferencerConnectionWrapper.clearInferred(Resource... contexts)
           
 void InferencerConnection.clearInferred(Resource... contexts)
          Removes all inferred statements from the specified/all contexts.
 CloseableIteration<? extends Statement,SailException> InferencerConnectionWrapper.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Calls InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped connection.
 CloseableIteration<? extends Statement,SailException> InferencerConnectionWrapper.getStatements(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
          Calls InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped connection.
 boolean InferencerConnectionWrapper.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean InferencerConnectionWrapper.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean InferencerConnection.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Removes an inferred statement from a specific context.
 boolean InferencerConnection.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
          Removes an inferred statement from a specific context.
 long InferencerConnectionWrapper.size(Resource... contexts)
          Calls InferencerConnectionWrapper.flushUpdates() before forwarding the call to the wrapped connection.
 

Uses of Resource in org.openrdf.sail.memory
 

Methods in org.openrdf.sail.memory that return types with arguments of type Resource
protected  CloseableIteration<? extends Resource,SailException> MemoryStoreConnection.getContextIDsInternal()
           
 

Methods in org.openrdf.sail.memory with parameters of type Resource
 boolean MemoryStoreConnection.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean MemoryStoreConnection.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  Statement MemoryStore.addStatement(Resource subj, URI pred, Value obj, Resource context, boolean explicit)
           
protected  boolean MemoryStoreConnection.addStatementInternal(Resource subj, URI pred, Value obj, boolean explicit, Resource... contexts)
          Adds the specified statement to this MemoryStore.
protected  boolean MemoryStoreConnection.addStatementInternal(Resource subj, URI pred, Value obj, boolean explicit, Resource... contexts)
          Adds the specified statement to this MemoryStore.
protected  void MemoryStoreConnection.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void MemoryStoreConnection.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
 void MemoryStoreConnection.clearInferred(Resource... contexts)
           
protected  void MemoryStoreConnection.clearInternal(Resource... contexts)
           
protected
<X extends Exception>
CloseableIteration<MemStatement,X>
MemoryStore.createStatementIterator(Class<X> excClass, Resource subj, URI pred, Value obj, boolean explicitOnly, int snapshot, ReadMode readMode, Resource... contexts)
          Creates a StatementIterator that contains the statements matching the specified pattern of subject, predicate, object, context.
protected
<X extends Exception>
CloseableIteration<MemStatement,X>
MemoryStore.createStatementIterator(Class<X> excClass, Resource subj, URI pred, Value obj, boolean explicitOnly, int snapshot, ReadMode readMode, Resource... contexts)
          Creates a StatementIterator that contains the statements matching the specified pattern of subject, predicate, object, context.
 CloseableIteration<MemStatement,QueryEvaluationException> MemoryStoreConnection.MemTripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
 CloseableIteration<MemStatement,QueryEvaluationException> MemoryStoreConnection.MemTripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  CloseableIteration<? extends Statement,SailException> MemoryStoreConnection.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
protected  CloseableIteration<? extends Statement,SailException> MemoryStoreConnection.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
protected  boolean MemoryStore.hasStatement(Resource subj, URI pred, Value obj, boolean explicitOnly, int snapshot, ReadMode readMode, Resource... contexts)
           
protected  boolean MemoryStore.hasStatement(Resource subj, URI pred, Value obj, boolean explicitOnly, int snapshot, ReadMode readMode, Resource... contexts)
           
 boolean MemoryStoreConnection.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean MemoryStoreConnection.hasStatement(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean MemoryStoreConnection.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean MemoryStoreConnection.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  boolean MemoryStoreConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, boolean explicit, Resource... contexts)
          Removes the statements that match the specified pattern of subject, predicate, object and context.
protected  boolean MemoryStoreConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, boolean explicit, Resource... contexts)
          Removes the statements that match the specified pattern of subject, predicate, object and context.
protected  void MemoryStoreConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void MemoryStoreConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  long MemoryStoreConnection.sizeInternal(Resource... contexts)
           
 

Uses of Resource in org.openrdf.sail.memory.config
 

Methods in org.openrdf.sail.memory.config that return Resource
 Resource MemoryStoreConfig.export(Graph graph)
           
 

Methods in org.openrdf.sail.memory.config with parameters of type Resource
 void MemoryStoreConfig.parse(Graph graph, Resource implNode)
           
 

Uses of Resource in org.openrdf.sail.memory.model
 

Subinterfaces of Resource in org.openrdf.sail.memory.model
 interface MemResource
          A MemoryStore-specific extension of Resource giving it subject statements.
 

Classes in org.openrdf.sail.memory.model that implement Resource
 class MemBNode
          A MemoryStore-specific extension of BNodeImpl giving it node properties.
 class MemURI
          A MemoryStore-specific implementation of URI that stores separated namespace and local name information to enable reuse of namespace String objects (reducing memory usage) and that gives it node properties.
 

Methods in org.openrdf.sail.memory.model with parameters of type Resource
 MemResource MemValueFactory.createMemResource(Resource resource)
          See createMemValue() for description.
 Statement MemValueFactory.createStatement(Resource subject, URI predicate, Value object)
           
 Statement MemValueFactory.createStatement(Resource subject, URI predicate, Value object, Resource context)
           
 MemResource MemValueFactory.getMemResource(Resource resource)
          See getMemValue() for description.
 

Uses of Resource in org.openrdf.sail.nativerdf
 

Methods in org.openrdf.sail.nativerdf that return types with arguments of type Resource
protected  CloseableIteration<Resource,IOException> NativeStore.getContextIDs(boolean readTransaction)
           
protected  CloseableIteration<? extends Resource,SailException> NativeStoreConnection.getContextIDsInternal()
           
 

Methods in org.openrdf.sail.nativerdf with parameters of type Resource
 boolean NativeStoreConnection.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean NativeStoreConnection.addInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void NativeStoreConnection.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void NativeStoreConnection.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  double NativeStore.cardinality(Resource subj, URI pred, Value obj, Resource context)
           
 void NativeStoreConnection.clearInferred(Resource... contexts)
           
protected  void NativeStoreConnection.clearInternal(Resource... contexts)
           
 Statement ValueStore.createStatement(Resource subject, URI predicate, Value object)
           
 Statement ValueStore.createStatement(Resource subject, URI predicate, Value object, Resource context)
           
protected  CloseableIteration<? extends Statement,IOException> NativeStore.createStatementIterator(Resource subj, URI pred, Value obj, boolean includeInferred, boolean readTransaction, Resource... contexts)
          Creates a statement iterator based on the supplied pattern.
protected  CloseableIteration<? extends Statement,IOException> NativeStore.createStatementIterator(Resource subj, URI pred, Value obj, boolean includeInferred, boolean readTransaction, Resource... contexts)
          Creates a statement iterator based on the supplied pattern.
protected  List<Integer> NativeStore.getContextIDs(Resource... contexts)
           
 NativeResource ValueStore.getNativeResource(Resource resource)
           
 CloseableIteration<? extends Statement,QueryEvaluationException> NativeTripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
 CloseableIteration<? extends Statement,QueryEvaluationException> NativeTripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  CloseableIteration<? extends Statement,SailException> NativeStoreConnection.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
protected  CloseableIteration<? extends Statement,SailException> NativeStoreConnection.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 boolean NativeStoreConnection.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
 boolean NativeStoreConnection.removeInferredStatement(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void NativeStoreConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void NativeStoreConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  long NativeStoreConnection.sizeInternal(Resource... contexts)
           
 

Uses of Resource in org.openrdf.sail.nativerdf.config
 

Methods in org.openrdf.sail.nativerdf.config that return Resource
 Resource NativeStoreConfig.export(Graph graph)
           
 

Methods in org.openrdf.sail.nativerdf.config with parameters of type Resource
 void NativeStoreConfig.parse(Graph graph, Resource implNode)
           
 

Uses of Resource in org.openrdf.sail.nativerdf.model
 

Subinterfaces of Resource in org.openrdf.sail.nativerdf.model
 interface NativeResource
           
 

Classes in org.openrdf.sail.nativerdf.model that implement Resource
 class NativeBNode
           
 class NativeURI
           
 

Uses of Resource in org.openrdf.sail.rdbms
 

Methods in org.openrdf.sail.rdbms with parameters of type Resource
protected  void RdbmsConnection.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void RdbmsConnection.addStatementInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
 RdbmsResource[] RdbmsValueFactory.asRdbmsResource(Resource... contexts)
           
 RdbmsResource RdbmsValueFactory.asRdbmsResource(Resource node)
           
protected  void RdbmsConnection.clearInternal(Resource... contexts)
           
 RdbmsStatement RdbmsValueFactory.createStatement(Resource subject, URI predicate, Value object)
           
 RdbmsStatement RdbmsValueFactory.createStatement(Resource subject, URI predicate, Value object, Resource context)
           
 RdbmsStatementIteration RdbmsTripleRepository.find(Resource subj, URI pred, Value obj, Resource... ctxs)
           
 RdbmsStatementIteration RdbmsTripleRepository.find(Resource subj, URI pred, Value obj, Resource... ctxs)
           
protected  CloseableIteration<? extends Statement,SailException> RdbmsConnection.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
protected  CloseableIteration<? extends Statement,SailException> RdbmsConnection.getStatementsInternal(Resource subj, URI pred, Value obj, boolean includeInferred, Resource... contexts)
           
 int RdbmsTripleRepository.remove(Resource subj, URI pred, Value obj, Resource... ctxs)
           
 int RdbmsTripleRepository.remove(Resource subj, URI pred, Value obj, Resource... ctxs)
           
protected  void RdbmsConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  void RdbmsConnection.removeStatementsInternal(Resource subj, URI pred, Value obj, Resource... contexts)
           
protected  long RdbmsConnection.sizeInternal(Resource... contexts)
           
 

Uses of Resource in org.openrdf.sail.rdbms.algebra
 

Methods in org.openrdf.sail.rdbms.algebra with parameters of type Resource
static ColumnVar ColumnVar.createCtx(String alias, Var v, Resource resource)
           
static ColumnVar ColumnVar.createSubj(String alias, Var v, Resource resource)
           
 

Uses of Resource in org.openrdf.sail.rdbms.config
 

Methods in org.openrdf.sail.rdbms.config that return Resource
 Resource RdbmsStoreConfig.export(Graph graph)
           
 

Methods in org.openrdf.sail.rdbms.config with parameters of type Resource
 void RdbmsStoreConfig.parse(Graph graph, Resource implNode)
           
 

Uses of Resource in org.openrdf.sail.rdbms.evaluation
 

Methods in org.openrdf.sail.rdbms.evaluation with parameters of type Resource
 CloseableIteration RdbmsTripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
 CloseableIteration RdbmsTripleSource.getStatements(Resource subj, URI pred, Value obj, Resource... contexts)
           
 

Uses of Resource in org.openrdf.sail.rdbms.model
 

Classes in org.openrdf.sail.rdbms.model that implement Resource
 class RdbmsBNode
          Wraps a BNodeImpl providing an internal id and version.
 class RdbmsResource
          Provides an internal id and version for URI and BNodes.
 class RdbmsURI
          Wraps a URIImpl providing an internal id and version.
 

Uses of Resource in org.openrdf.workbench.util
 

Methods in org.openrdf.workbench.util that return Resource
 Resource WorkbenchRequest.getResource(String name)
           
 



Copyright © 2001-2009 Aduna. All Rights Reserved.