Enum BinaryOperator

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

    public enum BinaryOperator
    extends java.lang.Enum<BinaryOperator>
    Binary operators used in expressions.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ADD
      Addition.
      AND
      Logical conjunction.
      CONCATENATE
      String concatenation.
      DIV
      Floating point division.
      EQ
      Equal.
      GEQ
      Greater or equal.
      GT
      Greater than.
      I_DIV
      Integer division.
      IN  
      LEQ
      Less or equal.
      LT
      Less than.
      MUL
      Multiplication.
      NEQ
      Not equal.
      OR
      Logical disjunction.
      REM
      Reminder.
      STRICT_EQ
      Strict version of equality, restricted to just some types.
      STRICT_NEQ
      Strict version of the not-equal operator.
      SUB
      Difference.
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      static boolean eq​(java.lang.Object left, java.lang.Object right)  
      abstract java.lang.Object eval​(java.lang.Object left, java.lang.Object right)  
      static boolean inOp​(java.lang.Object left, java.lang.Object right)  
      static boolean leq​(java.lang.Object left, java.lang.Object right)  
      static boolean lt​(java.lang.Object left, java.lang.Object right)  
      static boolean strictEq​(java.lang.Object left, java.lang.Object right)  
      static BinaryOperator valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static BinaryOperator[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static BinaryOperator[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (BinaryOperator c : BinaryOperator.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BinaryOperator valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • eq

        public static boolean eq​(java.lang.Object left,
                                 java.lang.Object right)
      • lt

        public static boolean lt​(java.lang.Object left,
                                 java.lang.Object right)
      • leq

        public static boolean leq​(java.lang.Object left,
                                  java.lang.Object right)
      • strictEq

        public static boolean strictEq​(java.lang.Object left,
                                       java.lang.Object right)
      • inOp

        public static boolean inOp​(java.lang.Object left,
                                   java.lang.Object right)
      • eval

        public abstract java.lang.Object eval​(java.lang.Object left,
                                              java.lang.Object right)