|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Statement | |
|---|---|
| org.ontoware.rdf2go.model | |
| Uses of Statement in org.ontoware.rdf2go.model |
|---|
| Methods in org.ontoware.rdf2go.model that return Statement | |
|---|---|
Statement |
ModelValueFactory.createStatement(Resource subject,
URI predicate,
Node object)
Create a new statement - but DOES NOT add it to the model |
Statement |
ModelSet.createStatement(URI context,
Resource subject,
URI predicate,
Node object)
Creates a statement with a context URI. |
| Methods in org.ontoware.rdf2go.model that return types with arguments of type Statement | |
|---|---|
ClosableIterator<Statement> |
FindableModelSet.findStatements(QuadPattern pattern)
Search across all existing models and retunrs all statements matching the quad pattern |
ClosableIterator<Statement> |
FindableModel.findStatements(ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
get all statements in the model with this subject, predicate and object. |
ClosableIterator<Statement> |
FindableModel.findStatements(TriplePattern pattern)
Iterator must be auto-close, i.e. when last element is fetched, the implementation must call close(). |
ClosableIterator<Statement> |
FindableModelSet.findStatements(UriOrVariable contextURI,
ResourceOrVariable subject,
UriOrVariable predicate,
NodeOrVariable object)
Search across all existing models |
java.lang.Iterable<Statement> |
DiffReader.getAdded()
|
java.lang.Iterable<Statement> |
DiffReader.getRemoved()
|
ClosableIterable<Statement> |
Sparqlable.queryConstruct(java.lang.String query,
java.lang.String querylanguage)
|
ClosableIterable<Statement> |
Sparqlable.sparqlConstruct(java.lang.String query)
|
ClosableIterable<Statement> |
Sparqlable.sparqlDescribe(java.lang.String query)
Iterator must be auto-close, i.e. when last element is fetched, the implementation must call close(). |
| Methods in org.ontoware.rdf2go.model with parameters of type Statement | |
|---|---|
void |
ModelChangedListener.addedStatement(Statement statement)
|
BlankNode |
ReificationSupport.addReificationOf(Statement statement)
A convenience function for addReficationOf( createBlankNode(), statement ); |
Resource |
ReificationSupport.addReificationOf(Statement statement,
Resource resource)
Reifies the statement, whether the statement was present in the model or not. |
void |
ModelWriter.addStatement(Statement statement)
adds a statement to this model |
void |
ModelSetAddRemove.addStatement(Statement statement)
This method creates a Model named statement.getContextURI if needed. |
boolean |
FindableModelSet.contains(Statement s)
|
boolean |
FindableModel.contains(Statement s)
|
java.util.Collection<Resource> |
ReificationSupport.getAllReificationsOf(Statement statement)
|
boolean |
ReificationSupport.hasReifications(Statement stmt)
|
boolean |
TriplePattern.matches(Statement statement)
|
void |
ModelChangedListener.removedStatement(Statement statement)
|
void |
ModelSetAddRemove.removeStatement(Statement statement)
Removes the statement (s,p,o) from a model named statement.getContext(). |
void |
ModelAddRemove.removeStatement(Statement statement)
remove a rdf2go-statement from the model |
| Method parameters in org.ontoware.rdf2go.model with type arguments of type Statement | |
|---|---|
void |
ModelWriter.addAll(java.util.Iterator<? extends Statement> other)
Add all statements contained in 'other' to this model = 'union' |
void |
ModelSetAddRemove.addAll(java.util.Iterator<? extends Statement> statement)
For each statement in the iterator, this method creates a Model named statement.getContextURI if needed. |
void |
ModelChangedListener.addedStatements(java.util.Iterator<? extends Statement> statements)
|
Diff |
Diff.create(java.util.Iterator<? extends Statement> add,
java.util.Iterator<? extends Statement> remove)
Should also be offered by a constructor |
Diff |
Diff.create(java.util.Iterator<? extends Statement> add,
java.util.Iterator<? extends Statement> remove)
Should also be offered by a constructor |
Diff |
ModelAddRemove.getDiff(java.util.Iterator<? extends Statement> statements)
|
void |
ModelSetAddRemove.removeAll(java.util.Iterator<? extends Statement> statement)
For each statement in the iterator, the statement is removed form the model named statement.getContext(); If the model named statement.getContext() becomes empty, it remains in the ModelSet. |
void |
ModelAddRemove.removeAll(java.util.Iterator<? extends Statement> statements)
Removes all statements contained in 'other' from this model = 'difference' |
void |
ModelChangedListener.removedStatements(java.util.Iterator<? extends Statement> statements)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||