Uses of Class
tech.oxfordsemantic.jrdfox.logic.Query
Package | Description |
---|---|
tech.oxfordsemantic.jrdfox.client | |
tech.oxfordsemantic.jrdfox.logic |
-
Uses of Query in tech.oxfordsemantic.jrdfox.client
Methods in tech.oxfordsemantic.jrdfox.client with parameters of type Query Modifier and Type Method Description Cursor
DataStoreConnection. createCursor(Query query, java.util.Map<java.lang.String,java.lang.String> compilationParameters)
Creates a cursor over the results of the given query.QueryResult
DataStoreConnection. evaluateQuery(Prefixes prefixes, Query query, java.util.Map<java.lang.String,java.lang.String> compilationParameters, java.io.File file, java.lang.String queryAnswerFormatName)
Evaluates a query and serialises the result to the supplied file using the specified format.QueryResult
DataStoreConnection. evaluateQuery(Prefixes prefixes, Query query, java.util.Map<java.lang.String,java.lang.String> compilationParameters, java.io.OutputStream outputStream, java.lang.String queryAnswerFormatName)
Evaluates a query and serialises the result to the supplied output stream using the specified format.QueryResult
DataStoreConnection. evaluateSelectionQuery(Query query, java.util.Map<java.lang.String,java.lang.String> compilationParameters, QueryAnswerMonitor queryAnswerMonitor)
Evaluates a SELECT/ASK query and calls the suppliedQueryAnswerMonitor
instance for each tuple in the result.QueryResult
DataStoreConnection. evaluateUpdateQuery(Query query, java.util.Map<java.lang.String,java.lang.String> compilationParameters)
Evaluates an UPDATE query. -
Uses of Query in tech.oxfordsemantic.jrdfox.logic
Methods in tech.oxfordsemantic.jrdfox.logic that return Query Modifier and Type Method Description static Query
Query. create(QueryType queryType, boolean distinct, java.util.List<Variable> answerVariables, Formula queryFormula)
static Query
Query. create(QueryType queryType, boolean distinct, java.util.List<Variable> answerVariables, Formula queryFormula, java.util.List<Query.OrderBy> orderVariables, long offset, long limit)
static Query
Query. create(QueryType queryType, boolean distinct, java.util.List<Variable> answerVariables, Formula queryFormula, java.util.List<Query.OrderBy> orderVariables, long offset, long limit, java.util.List<Atom> deletePattern, java.util.List<Atom> insertPattern)
static Query
Query. create(QueryType queryType, boolean distinct, Variable[] answerVariables, Formula queryFormula)
static Query
Query. create(QueryType queryType, boolean distinct, Variable[] answerVariables, Formula queryFormula, Query.OrderBy[] orderVariables, long offset, long limit)
static Query
Query. create(QueryType queryType, boolean distinct, Variable[] answerVariables, Formula queryFormula, Query.OrderBy[] orderVariables, long offset, long limit, Atom[] deletePattern, Atom[] insertPattern)
Methods in tech.oxfordsemantic.jrdfox.logic with parameters of type Query Modifier and Type Method Description E
LogicVisitor. visit(Query object)