Uses of Class
tech.oxfordsemantic.jrdfox.logic.Variable
| Package | Description |
|---|---|
| tech.oxfordsemantic.jrdfox.logic |
-
Uses of Variable in tech.oxfordsemantic.jrdfox.logic
Fields in tech.oxfordsemantic.jrdfox.logic declared as Variable Modifier and Type Field Description static Variable[]Variable. NO_VARIABLESMethods in tech.oxfordsemantic.jrdfox.logic that return Variable Modifier and Type Method Description static VariableVariable. create(java.lang.String name)VariableQuery. getAnswerVariable(int index)VariableBindAtom. getBoundVariable()VariableNegation. getExistentialVariable(int index)VariableAggregate. getGroupVariable(int index)VariableQuery.OrderBy. getVariable()VariableValues. getVariable(int index)Methods in tech.oxfordsemantic.jrdfox.logic that return types with arguments of type Variable Modifier and Type Method Description java.util.List<Variable>Query. getAnswerVariables()java.util.List<Variable>Negation. getExistentialVariables()java.util.List<Variable>Aggregate. getGroupVariables()java.util.List<Variable>Values. getVariables()Methods in tech.oxfordsemantic.jrdfox.logic with parameters of type Variable Modifier and Type Method Description static AggregateAggregate. create(Formula aggregateFormula, Variable[] groupVariables, AggregateBind[] aggregateBinds)static AggregateBindAggregateBind. create(java.lang.String functionName, boolean distinct, java.util.List<BuiltinExpression> arguments, Variable boundVariable)static AggregateBindAggregateBind. create(java.lang.String functionName, boolean distinct, BuiltinExpression[] arguments, Variable boundVariable)static BindAtomBindAtom. create(BuiltinExpression builtinExpression, Variable boundVariable)static NegationNegation. create(Variable[] existentialVariables, Formula negatedFormulas)static QueryQuery. create(QueryType queryType, boolean distinct, Variable[] answerVariables, Formula queryFormula)static QueryQuery. create(QueryType queryType, boolean distinct, Variable[] answerVariables, Formula queryFormula, Query.OrderBy[] orderVariables, long offset, long limit)static QueryQuery. create(QueryType queryType, boolean distinct, Variable[] answerVariables, Formula queryFormula, Query.OrderBy[] orderVariables, long offset, long limit, Atom[] deletePattern, Atom[] insertPattern)static ValuesValues. create(Variable[] variables, Resource[][] data)ELogicVisitor. visit(Variable object)Method parameters in tech.oxfordsemantic.jrdfox.logic with type arguments of type Variable Modifier and Type Method Description static AggregateAggregate. create(Formula aggregateFormula, java.util.List<Variable> groupVariables, java.util.List<AggregateBind> aggregateBinds)static NegationNegation. create(java.util.List<Variable> existentialVariables, Formula negatedFormulas)static QueryQuery. create(QueryType queryType, boolean distinct, java.util.List<Variable> answerVariables, Formula queryFormula)static QueryQuery. create(QueryType queryType, boolean distinct, java.util.List<Variable> answerVariables, Formula queryFormula, java.util.List<Query.OrderBy> orderVariables, long offset, long limit)static QueryQuery. 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 ValuesValues. create(java.util.List<Variable> variables, java.util.List<java.util.List<Resource>> data)Constructors in tech.oxfordsemantic.jrdfox.logic with parameters of type Variable Constructor Description OrderBy(Variable variable, QueryOrder queryOrder)