Uses of Interface
org.geotools.api.filter.expression.BinaryExpression
-
Packages that use BinaryExpression Package Description org.geotools.api.filter.expression An expression is a combination of one or more elements that evaluate to singleObject
value.org.geotools.data.complex.filter org.geotools.data.jdbc org.geotools.filter org.geotools.filter.expression org.geotools.filter.text.commons org.geotools.filter.visitor -
-
Uses of BinaryExpression in org.geotools.api.filter.expression
Subinterfaces of BinaryExpression in org.geotools.api.filter.expression Modifier and Type Interface Description interface
Add
Encodes the operation of addition.interface
Divide
Encodes the operation of division where the first argument is divided by the second argument.interface
Multiply
Encodes the operation of multiplication.interface
Subtract
Encodes the operation of subtraction where the second argument is subtracted from the first. -
Uses of BinaryExpression in org.geotools.data.complex.filter
Methods in org.geotools.data.complex.filter with parameters of type BinaryExpression Modifier and Type Method Description Expression[][]
UnmappingFilterVisitor. visitBinaryExpression(BinaryExpression expression)
protected void
ComplexFilterSplitter. visitMathExpression(BinaryExpression expression)
-
Uses of BinaryExpression in org.geotools.data.jdbc
Methods in org.geotools.data.jdbc with parameters of type BinaryExpression Modifier and Type Method Description protected Object
FilterToSQL. visit(BinaryExpression expression, String operator, Object extraData)
Writes the SQL for the Math Expression. -
Uses of BinaryExpression in org.geotools.filter
Classes in org.geotools.filter that implement BinaryExpression Modifier and Type Class Description class
MathExpressionImpl
Holds a mathematical relationship between two expressions. -
Uses of BinaryExpression in org.geotools.filter.expression
Classes in org.geotools.filter.expression that implement BinaryExpression Modifier and Type Class Description class
AddImpl
Implementation of Add expression.class
DivideImpl
Implementation of divide expression.class
MultiplyImpl
Implementation of Multiply expression.class
SubtractImpl
Implementation of Subtract expression. -
Uses of BinaryExpression in org.geotools.filter.text.commons
Methods in org.geotools.filter.text.commons that return BinaryExpression Modifier and Type Method Description BinaryExpression
AbstractFilterBuilder. buildAddExpression()
BinaryExpression
AbstractFilterBuilder. buildDivideExpression()
BinaryExpression
AbstractFilterBuilder. buildMultiplyExpression()
BinaryExpression
AbstractFilterBuilder. buildSubtractExression()
-
Uses of BinaryExpression in org.geotools.filter.visitor
Methods in org.geotools.filter.visitor with parameters of type BinaryExpression Modifier and Type Method Description protected Class<?>
ExpressionTypeVisitor. visitBinaryExpression(BinaryExpression expression)
protected void
PostPreProcessFilterSplittingVisitor. visitMathExpression(BinaryExpression expression)
-