Interface BinaryExpression

All Superinterfaces:
Expression
All Known Subinterfaces:
Add, Divide, Multiply, Subtract
All Known Implementing Classes:
AddImpl, DivideImpl, MathExpressionImpl, MultiplyImpl, SubtractImpl

public interface BinaryExpression extends Expression
Abstract base class for the various filter expressions that compute some value from two input values.
Since:
GeoAPI 2.0
Author:
Chris Dillard (SYS Technologies)
  • Field Summary

    Fields inherited from interface Expression

    NIL
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the expression that represents the first (left) value that will be used in the computation of another value.
    Returns the expression that represents the second (right) value that will be used in the computation of another value.

    Methods inherited from interface Expression

    accept, evaluate, evaluate
  • Method Details

    • getExpression1

      Expression getExpression1()
      Returns the expression that represents the first (left) value that will be used in the computation of another value.
    • getExpression2

      Expression getExpression2()
      Returns the expression that represents the second (right) value that will be used in the computation of another value.