Enum Class OperatorKind

java.lang.Object
java.lang.Enum<OperatorKind>
com.knezevic.edaf.v3.repr.grammar.ops.OperatorKind
All Implemented Interfaces:
Serializable, Comparable<OperatorKind>, Constable

public enum OperatorKind extends Enum<OperatorKind>
Operator family used by printers and evaluator safety rules.
  • Enum Constant Details

    • REAL_UNARY

      public static final OperatorKind REAL_UNARY
    • REAL_BINARY

      public static final OperatorKind REAL_BINARY
    • REAL_TERNARY

      public static final OperatorKind REAL_TERNARY
    • BOOLEAN_UNARY

      public static final OperatorKind BOOLEAN_UNARY
    • BOOLEAN_BINARY

      public static final OperatorKind BOOLEAN_BINARY
    • BOOLEAN_TERNARY

      public static final OperatorKind BOOLEAN_TERNARY
  • Method Details

    • values

      public static OperatorKind[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OperatorKind valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null