Uses of Class
tech.oxfordsemantic.jrdfox.logic.expression.FunctionCall
Package | Description |
---|---|
tech.oxfordsemantic.jrdfox.logic | |
tech.oxfordsemantic.jrdfox.logic.datalog | |
tech.oxfordsemantic.jrdfox.logic.expression |
-
Uses of FunctionCall in tech.oxfordsemantic.jrdfox.logic
Methods in tech.oxfordsemantic.jrdfox.logic with parameters of type FunctionCall Modifier and Type Method Description E
LogicAdapter. visit(FunctionCall functionCall)
E
LogicVisitor. visit(FunctionCall functionCall)
java.lang.Void
LogicWalker. visit(FunctionCall functionCall)
-
Uses of FunctionCall in tech.oxfordsemantic.jrdfox.logic.datalog
Constructors in tech.oxfordsemantic.jrdfox.logic.datalog with parameters of type FunctionCall Constructor Description Bind(FunctionCall functionCall, Variable boundVariable)
-
Uses of FunctionCall in tech.oxfordsemantic.jrdfox.logic.expression
Methods in tech.oxfordsemantic.jrdfox.logic.expression that return FunctionCall Modifier and Type Method Description static FunctionCall
FunctionCall. add(java.util.List<Expression> arguments)
static FunctionCall
FunctionCall. add(Expression... arguments)
static FunctionCall
FunctionCall. create(java.lang.String functionName, boolean isDistinct, java.util.List<FunctionCall.ScalarValue> scalarValues, java.util.List<Expression> arguments)
static FunctionCall
FunctionCall. create(java.lang.String functionName, boolean isDistinct, FunctionCall.ScalarValue[] scalarValues, Expression... arguments)
static FunctionCall
FunctionCall. create(java.lang.String functionName, java.util.List<Expression> arguments)
static FunctionCall
FunctionCall. create(java.lang.String functionName, Expression... arguments)
static FunctionCall
FunctionCall. divide(Expression argument1, Expression argument2)
static FunctionCall
FunctionCall. equal(Expression argument1, Expression argument2)
static FunctionCall
FunctionCall. greaterEqualThan(Expression argument1, Expression argument2)
static FunctionCall
FunctionCall. greaterThan(Expression argument1, Expression argument2)
static FunctionCall
FunctionCall. lessEqualThan(Expression argument1, Expression argument2)
static FunctionCall
FunctionCall. lessThan(Expression argument1, Expression argument2)
static FunctionCall
FunctionCall. logicalAnd(java.util.List<Expression> arguments)
static FunctionCall
FunctionCall. logicalAnd(Expression... arguments)
static FunctionCall
FunctionCall. logicalNot(Expression argument)
static FunctionCall
FunctionCall. logicalOr(java.util.List<Expression> arguments)
static FunctionCall
FunctionCall. logicalOr(Expression... arguments)
static FunctionCall
FunctionCall. multiply(java.util.List<Expression> arguments)
static FunctionCall
FunctionCall. multiply(Expression... arguments)
static FunctionCall
FunctionCall. notEqual(Expression argument1, Expression argument2)
static FunctionCall
FunctionCall. numericUnaryMinus(Expression argument)
static FunctionCall
FunctionCall. numericUnaryPlus(Expression argument)
static FunctionCall
FunctionCall. subtract(Expression argument1, Expression argument2)