|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Statement | |
|---|---|
| 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.query.dawg | Functionality to convert tuple query results to and from the Data Access Working Group Test Result Set RDF Vocabulary |
| org.openrdf.query.impl | |
| org.openrdf.repository | The Repository API: the main API for handling Sesame repositories. |
| org.openrdf.repository.base | |
| org.openrdf.repository.sail | Repository implementation for local storage backends. |
| org.openrdf.repository.util | |
| org.openrdf.rio | General classes and interfaces for RDF parsers and RDF writers. |
| org.openrdf.rio.helpers | Provides helpers classes for Rio. |
| org.openrdf.rio.n3 | Writer for RDF in Notation 3/N3 format. |
| 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.rdfxml.util | |
| org.openrdf.rio.trig | Parser and writer for RDF in TriG format. |
| org.openrdf.rio.trix | Parser and writer for RDF in TriX 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.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.model | Classes implementing the storage model of the MemoryStore. |
| org.openrdf.sail.nativerdf | Native RDF storage backend. |
| org.openrdf.sail.rdbms | |
| org.openrdf.sail.rdbms.model | |
| Uses of Statement in org.openrdf.model |
|---|
| Methods in org.openrdf.model that return Statement | |
|---|---|
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. |
| Methods in org.openrdf.model that return types with arguments of type Statement | |
|---|---|
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 Statement in org.openrdf.model.impl |
|---|
| Classes in org.openrdf.model.impl that implement Statement | |
|---|---|
class |
ContextStatementImpl
An extension of StatementImpl that adds a context field. |
class |
StatementImpl
An implementation of the Statement interface for statements that
don't have an associated context. |
| Fields in org.openrdf.model.impl with type parameters of type Statement | |
|---|---|
protected LinkedList<Statement> |
GraphImpl.statements
|
| Methods in org.openrdf.model.impl that return Statement | |
|---|---|
Statement |
ValueFactoryImpl.createStatement(Resource subject,
URI predicate,
Value object)
|
Statement |
ValueFactoryImpl.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
|
| Methods in org.openrdf.model.impl that return types with arguments of type Statement | |
|---|---|
Iterator<Statement> |
GraphImpl.iterator()
|
Iterator<Statement> |
GraphImpl.match(Resource subj,
URI pred,
Value obj,
Resource... contexts)
|
| Methods in org.openrdf.model.impl with parameters of type Statement | |
|---|---|
boolean |
GraphImpl.add(Statement st)
|
| Constructor parameters in org.openrdf.model.impl with type arguments of type Statement | |
|---|---|
GraphImpl(Collection<? extends Statement> statements)
|
|
GraphImpl(ValueFactory valueFactory,
Collection<? extends Statement> statements)
|
|
| Uses of Statement in org.openrdf.model.util |
|---|
| Method parameters in org.openrdf.model.util with type arguments of type Statement | |
|---|---|
static boolean |
ModelUtil.equals(Iterable<? extends Statement> model1,
Iterable<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if they are equal. |
static boolean |
ModelUtil.equals(Iterable<? extends Statement> model1,
Iterable<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if they are equal. |
static boolean |
ModelUtil.equals(Set<? extends Statement> model1,
Set<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if they are equal. |
static boolean |
ModelUtil.equals(Set<? extends Statement> model1,
Set<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if they are equal. |
static boolean |
ModelUtil.isSubset(Iterable<? extends Statement> model1,
Iterable<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if the first model is a subset of the second model. |
static boolean |
ModelUtil.isSubset(Iterable<? extends Statement> model1,
Iterable<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if the first model is a subset of the second model. |
static boolean |
ModelUtil.isSubset(Set<? extends Statement> model1,
Set<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if the first model is a subset of the second model. |
static boolean |
ModelUtil.isSubset(Set<? extends Statement> model1,
Set<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns true if the first model is a subset of the second model. |
| Uses of Statement in org.openrdf.query.algebra.evaluation |
|---|
| Methods in org.openrdf.query.algebra.evaluation that return types with arguments of type Statement | |
|---|---|
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 Statement in org.openrdf.query.dawg |
|---|
| Methods in org.openrdf.query.dawg with parameters of type Statement | |
|---|---|
void |
DAWGTestResultSetParser.handleStatement(Statement st)
|
void |
DAWGTestBooleanParser.handleStatement(Statement st)
|
| Method parameters in org.openrdf.query.dawg with type arguments of type Statement | |
|---|---|
static boolean |
DAWGTestResultSetUtil.toBooleanQueryResult(Iterable<? extends Statement> dawgGraph)
|
static TupleQueryResult |
DAWGTestResultSetUtil.toTupleQueryResult(Iterable<? extends Statement> dawgGraph)
|
| Uses of Statement in org.openrdf.query.impl |
|---|
| Constructor parameters in org.openrdf.query.impl with type arguments of type Statement | |
|---|---|
GraphQueryResultImpl(Map<String,String> namespaces,
CloseableIteration<? extends Statement,? extends QueryEvaluationException> statementIter)
|
|
GraphQueryResultImpl(Map<String,String> namespaces,
Iterable<? extends Statement> statements)
|
|
GraphQueryResultImpl(Map<String,String> namespaces,
Iterator<? extends Statement> statementIter)
|
|
| Uses of Statement in org.openrdf.repository |
|---|
| Methods in org.openrdf.repository that return types with arguments of type Statement | |
|---|---|
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. |
| Methods in org.openrdf.repository with parameters of type Statement | |
|---|---|
void |
RepositoryConnection.add(Statement st,
Resource... contexts)
Adds the supplied statement to this repository, optionally to one or more named 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(Statement st,
Resource... contexts)
Removes the supplied statement from the specified contexts in the repository. |
| Method parameters in org.openrdf.repository with type arguments of type Statement | ||
|---|---|---|
void |
RepositoryConnection.add(Iterable<? extends Statement> statements,
Resource... contexts)
Adds the supplied statements to this repository, optionally to one or more named contexts. |
|
|
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.remove(Iterable<? extends Statement> statements,
Resource... contexts)
Removes the supplied statements from the specified contexts in this repository. |
|
|
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. |
|
| Uses of Statement in org.openrdf.repository.base |
|---|
| Methods in org.openrdf.repository.base that return types with arguments of type Statement | |
|---|---|
RepositoryResult<Statement> |
RepositoryConnectionWrapper.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
| Methods in org.openrdf.repository.base with parameters of type Statement | |
|---|---|
void |
RepositoryConnectionWrapper.add(Statement st,
Resource... contexts)
|
void |
RepositoryConnectionBase.add(Statement st,
Resource... contexts)
|
protected void |
RepositoryConnectionBase.addWithoutCommit(Statement st,
Resource... contexts)
|
boolean |
RepositoryConnectionWrapper.hasStatement(Statement st,
boolean includeInferred,
Resource... contexts)
|
boolean |
RepositoryConnectionBase.hasStatement(Statement st,
boolean includeInferred,
Resource... contexts)
|
void |
RepositoryConnectionWrapper.remove(Statement st,
Resource... contexts)
|
void |
RepositoryConnectionBase.remove(Statement st,
Resource... contexts)
|
protected void |
RepositoryConnectionBase.removeWithoutCommit(Statement st,
Resource... contexts)
|
| Method parameters in org.openrdf.repository.base with type arguments of type Statement | ||
|---|---|---|
void |
RepositoryConnectionWrapper.add(Iterable<? extends Statement> statements,
Resource... contexts)
|
|
void |
RepositoryConnectionBase.add(Iterable<? extends Statement> statements,
Resource... contexts)
|
|
|
RepositoryConnectionWrapper.add(Iteration<? extends Statement,E> statementIter,
Resource... contexts)
|
|
|
RepositoryConnectionBase.add(Iteration<? extends Statement,E> statementIter,
Resource... contexts)
|
|
protected void |
RepositoryConnectionWrapper.exportStatements(RepositoryResult<Statement> stIter,
RDFHandler handler)
Exports all statements contained in the supplied statement iterator and all relevant namespace information to the supplied RDFHandler. |
|
void |
RepositoryConnectionWrapper.remove(Iterable<? extends Statement> statements,
Resource... contexts)
|
|
void |
RepositoryConnectionBase.remove(Iterable<? extends Statement> statements,
Resource... contexts)
|
|
|
RepositoryConnectionWrapper.remove(Iteration<? extends Statement,E> statementIter,
Resource... contexts)
|
|
|
RepositoryConnectionBase.remove(Iteration<? extends Statement,E> statementIter,
Resource... contexts)
|
|
| Uses of Statement in org.openrdf.repository.sail |
|---|
| Methods in org.openrdf.repository.sail that return types with arguments of type Statement | |
|---|---|
RepositoryResult<Statement> |
SailRepositoryConnection.getStatements(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
| Uses of Statement in org.openrdf.repository.util |
|---|
| Methods in org.openrdf.repository.util that return types with arguments of type Statement | |
|---|---|
static Collection<? extends Statement> |
RepositoryUtil.difference(Collection<? extends Statement> model1,
Collection<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns the difference between the first and the second model (that is, all statements that are present in model1 but not in model2). |
static Collection<? extends Statement> |
RepositoryUtil.difference(Repository rep1,
Repository rep2)
Compares two models defined by the default context of two repositories and returns the difference between the first and the second model (that is, all statements that are present in rep1 but not in rep2). |
| Methods in org.openrdf.repository.util with parameters of type Statement | |
|---|---|
void |
RDFRemover.handleStatement(Statement st)
|
void |
RDFInserter.handleStatement(Statement st)
|
| Method parameters in org.openrdf.repository.util with type arguments of type Statement | |
|---|---|
static Collection<? extends Statement> |
RepositoryUtil.difference(Collection<? extends Statement> model1,
Collection<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns the difference between the first and the second model (that is, all statements that are present in model1 but not in model2). |
static Collection<? extends Statement> |
RepositoryUtil.difference(Collection<? extends Statement> model1,
Collection<? extends Statement> model2)
Compares two models, defined by two statement collections, and returns the difference between the first and the second model (that is, all statements that are present in model1 but not in model2). |
| Uses of Statement in org.openrdf.rio |
|---|
| Methods in org.openrdf.rio with parameters of type Statement | |
|---|---|
void |
RDFHandler.handleStatement(Statement st)
Handles a statement. |
| Uses of Statement in org.openrdf.rio.helpers |
|---|
| Methods in org.openrdf.rio.helpers that return Statement | |
|---|---|
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. |
| Methods in org.openrdf.rio.helpers that return types with arguments of type Statement | |
|---|---|
Collection<Statement> |
StatementCollector.getStatements()
Gets the collection that contains the collected statements. |
| Methods in org.openrdf.rio.helpers with parameters of type Statement | |
|---|---|
void |
StatementCollector.handleStatement(Statement st)
|
void |
RDFHandlerWrapper.handleStatement(Statement st)
|
void |
RDFHandlerBase.handleStatement(Statement st)
|
| Constructor parameters in org.openrdf.rio.helpers with type arguments of type Statement | |
|---|---|
StatementCollector(Collection<Statement> statements)
Creates a new StatementCollector that stores reported statements in the supplied collection and that uses a new LinkedHashMap to store the reported namespaces. |
|
StatementCollector(Collection<Statement> statements,
Map<String,String> namespaces)
Creates a new StatementCollector that stores reported statements and namespaces in the supplied containers. |
|
| Uses of Statement in org.openrdf.rio.n3 |
|---|
| Methods in org.openrdf.rio.n3 with parameters of type Statement | |
|---|---|
void |
N3Writer.handleStatement(Statement st)
|
| Uses of Statement in org.openrdf.rio.ntriples |
|---|
| Methods in org.openrdf.rio.ntriples with parameters of type Statement | |
|---|---|
void |
NTriplesWriter.handleStatement(Statement st)
|
| Uses of Statement in org.openrdf.rio.rdfxml |
|---|
| Methods in org.openrdf.rio.rdfxml with parameters of type Statement | |
|---|---|
void |
RDFXMLWriter.handleStatement(Statement st)
|
| Uses of Statement in org.openrdf.rio.rdfxml.util |
|---|
| Methods in org.openrdf.rio.rdfxml.util with parameters of type Statement | |
|---|---|
void |
RDFXMLPrettyWriter.handleStatement(Statement st)
|
| Uses of Statement in org.openrdf.rio.trig |
|---|
| Methods in org.openrdf.rio.trig with parameters of type Statement | |
|---|---|
void |
TriGWriter.handleStatement(Statement st)
|
| Uses of Statement in org.openrdf.rio.trix |
|---|
| Methods in org.openrdf.rio.trix with parameters of type Statement | |
|---|---|
void |
TriXWriter.handleStatement(Statement st)
|
| Uses of Statement in org.openrdf.rio.turtle |
|---|
| Methods in org.openrdf.rio.turtle with parameters of type Statement | |
|---|---|
void |
TurtleWriter.handleStatement(Statement st)
|
| Uses of Statement in org.openrdf.sail |
|---|
| Methods in org.openrdf.sail that return types with arguments of type Statement | |
|---|---|
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. |
| Methods in org.openrdf.sail with parameters of type Statement | |
|---|---|
void |
SailConnectionListener.statementAdded(Statement st)
Notifies the listener that a statement has been added in a transaction that it has registered itself with. |
void |
SailConnectionListener.statementRemoved(Statement st)
Notifies the listener that a statement has been removed in a transaction that it has registered itself with. |
| Uses of Statement in org.openrdf.sail.helpers |
|---|
| Methods in org.openrdf.sail.helpers that return types with arguments of type Statement | |
|---|---|
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)
|
protected abstract CloseableIteration<? extends Statement,SailException> |
SailConnectionBase.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
| Methods in org.openrdf.sail.helpers with parameters of type Statement | |
|---|---|
protected void |
SailConnectionBase.notifyStatementAdded(Statement st)
|
protected void |
SailConnectionBase.notifyStatementRemoved(Statement st)
|
| Uses of Statement in org.openrdf.sail.inferencer |
|---|
| Methods in org.openrdf.sail.inferencer that return types with arguments of type Statement | |
|---|---|
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. |
| Uses of Statement in org.openrdf.sail.memory |
|---|
| Methods in org.openrdf.sail.memory that return Statement | |
|---|---|
protected Statement |
MemoryStore.addStatement(Resource subj,
URI pred,
Value obj,
Resource context,
boolean explicit)
|
| Methods in org.openrdf.sail.memory that return types with arguments of type Statement | |
|---|---|
protected CloseableIteration<? extends Statement,SailException> |
MemoryStoreConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
| Uses of Statement in org.openrdf.sail.memory.model |
|---|
| Classes in org.openrdf.sail.memory.model that implement Statement | |
|---|---|
class |
MemStatement
A MemStatement is a Statement which contains context information and a flag indicating whether the statement is explicit or inferred. |
| Methods in org.openrdf.sail.memory.model that return Statement | |
|---|---|
Statement |
MemValueFactory.createStatement(Resource subject,
URI predicate,
Value object)
|
Statement |
MemValueFactory.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
|
| Uses of Statement in org.openrdf.sail.nativerdf |
|---|
| Methods in org.openrdf.sail.nativerdf that return Statement | |
|---|---|
Statement |
ValueStore.createStatement(Resource subject,
URI predicate,
Value object)
|
Statement |
ValueStore.createStatement(Resource subject,
URI predicate,
Value object,
Resource context)
|
| Methods in org.openrdf.sail.nativerdf that return types with arguments of type Statement | |
|---|---|
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. |
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)
|
| Uses of Statement in org.openrdf.sail.rdbms |
|---|
| Methods in org.openrdf.sail.rdbms that return types with arguments of type Statement | |
|---|---|
protected CloseableIteration<? extends Statement,SailException> |
RdbmsConnection.getStatementsInternal(Resource subj,
URI pred,
Value obj,
boolean includeInferred,
Resource... contexts)
|
| Methods in org.openrdf.sail.rdbms with parameters of type Statement | |
|---|---|
RdbmsStatement |
RdbmsValueFactory.asRdbmsStatement(Statement stmt)
|
| Uses of Statement in org.openrdf.sail.rdbms.model |
|---|
| Classes in org.openrdf.sail.rdbms.model that implement Statement | |
|---|---|
class |
RdbmsStatement
Rdbms typed statement. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||