Enum ExpressionFactory.BinaryOperator

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<ExpressionFactory.BinaryOperator>
    Enclosing class:
    ExpressionFactory

    public static enum ExpressionFactory.BinaryOperator
    extends java.lang.Enum<ExpressionFactory.BinaryOperator>
    Representation of binary operators. We only support a limited set of operators as follows:
    • Basic arithmetic: PLUS, MINUS, TIMES, DIV, REM
    • Relational operators (LT, GT, LE, GE, EQ, NE)
    • == and != on references (e.g. obj == null) and primitives.
    • AND and OR on booleans