Package | Description |
---|---|
eu.fbk.knowledgestore |
KnowledgeStore core API (
ks-core ). |
eu.fbk.knowledgestore.tool |
Modifier and Type | Method and Description |
---|---|
protected abstract <T> Stream<T> |
Operation.Sparql.doExec(Long timeout,
Class<T> type,
String expression,
Set<org.openrdf.model.URI> defaultGraphs,
Set<org.openrdf.model.URI> namedGraphs)
Implementation method responsible of executing the SPARQL operation.
|
protected abstract Stream<Record> |
Operation.Match.doExec(Long timeout,
Map<org.openrdf.model.URI,XPath> conditions,
Map<org.openrdf.model.URI,Set<org.openrdf.model.URI>> ids,
Map<org.openrdf.model.URI,Set<org.openrdf.model.URI>> properties) |
protected abstract Outcome |
Operation.SparqlUpdate.doExec(Long timeout,
Stream<? extends org.openrdf.model.Statement> statements) |
protected abstract Outcome |
Operation.SparqlDelete.doExec(Long timeout,
Stream<? extends org.openrdf.model.Statement> statements) |
protected abstract Outcome |
Operation.Upload.doExec(Long timeout,
org.openrdf.model.URI resourceID,
Representation representation) |
protected abstract Representation |
Operation.Download.doExec(Long timeout,
org.openrdf.model.URI resourceID,
Set<String> mimeTypes,
boolean caching)
Implementation method responsible of executing the download operation.
|
protected abstract Outcome |
Operation.Merge.doExec(Long timeout,
org.openrdf.model.URI type,
Stream<? extends Record> stream,
Criteria criteria,
Handler<? super Outcome> handler) |
protected abstract Outcome |
Operation.Create.doExec(Long timeout,
org.openrdf.model.URI type,
Stream<? extends Record> records,
Handler<? super Outcome> handler) |
protected abstract long |
Operation.Count.doExec(Long timeout,
org.openrdf.model.URI type,
XPath condition,
Set<org.openrdf.model.URI> ids) |
protected abstract Outcome |
Operation.Delete.doExec(Long timeout,
org.openrdf.model.URI type,
XPath condition,
Set<org.openrdf.model.URI> ids,
Handler<? super Outcome> handler) |
protected abstract Outcome |
Operation.Update.doExec(Long timeout,
org.openrdf.model.URI type,
XPath condition,
Set<org.openrdf.model.URI> ids,
Record record,
Criteria criteria,
Handler<? super Outcome> handler) |
protected abstract Stream<Record> |
Operation.Retrieve.doExec(Long timeout,
org.openrdf.model.URI type,
XPath condition,
Set<org.openrdf.model.URI> ids,
Set<org.openrdf.model.URI> properties,
Long offset,
Long limit) |
Representation |
Operation.Download.exec()
Executes the operation, returning the requested representation or null, if it does not
exist.
|
Outcome |
Operation.Upload.exec()
Executes the operation, returning its outcome.
|
long |
Operation.Count.exec() |
Stream<Record> |
Operation.Retrieve.exec() |
Outcome |
Operation.Create.exec() |
Outcome |
Operation.Merge.exec() |
Outcome |
Operation.Update.exec() |
Outcome |
Operation.Delete.exec() |
Stream<Record> |
Operation.Match.exec() |
Outcome |
Operation.SparqlUpdate.exec() |
Outcome |
Operation.SparqlDelete.exec() |
Outcome |
Operation.Create.exec(Collection<? super Outcome> collection) |
Outcome |
Operation.Merge.exec(Collection<? super Outcome> collection) |
Outcome |
Operation.Update.exec(Collection<? super Outcome> collection) |
Outcome |
Operation.Delete.exec(Collection<? super Outcome> collection) |
Outcome |
Operation.Create.exec(Handler<? super Outcome> handler) |
Outcome |
Operation.Merge.exec(Handler<? super Outcome> handler) |
Outcome |
Operation.Update.exec(Handler<? super Outcome> handler) |
Outcome |
Operation.Delete.exec(Handler<? super Outcome> handler) |
boolean |
Operation.Sparql.execBoolean()
Evaluates the query, returning its boolean result; applicable to ASK queries.
|
Stream<org.openrdf.model.Statement> |
Operation.Sparql.execTriples()
Evaluates the query, returning a
Stream with the resulting Statement s;
applicable to CONSTRUCT and DESCRIBE queries. |
Stream<org.openrdf.query.BindingSet> |
Operation.Sparql.execTuples()
Evaluates the query, returning a
Stream with the resulting BindingSet s;
applicable to SELECT queries. |
Modifier and Type | Method and Description |
---|---|
void |
TestGenerator.run() |
Copyright © 2015–2016 FBK-irst. All rights reserved.