Enum Operand

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

    public enum Operand
    extends java.lang.Enum<Operand>
    Author:
    Damian Sniezek
    • Enum Constant Detail

      • GT

        public static final Operand GT
      • AFTER

        public static final Operand AFTER
      • LT

        public static final Operand LT
      • BEFORE

        public static final Operand BEFORE
      • ON

        public static final Operand ON
      • EQ

        public static final Operand EQ
      • CONTAINS

        public static final Operand CONTAINS
      • LIKE

        public static final Operand LIKE
      • NOTLIKE

        public static final Operand NOTLIKE
      • EMPTY

        public static final Operand EMPTY
      • ISNULL

        public static final Operand ISNULL
      • ISNOTNULL

        public static final Operand ISNOTNULL
      • IN

        public static final Operand IN
      • NOTIN

        public static final Operand NOTIN
      • INORNULL

        public static final Operand INORNULL
      • BEFOREORNULL

        public static final Operand BEFOREORNULL
      • BEFOREOREQUAL

        public static final Operand BEFOREOREQUAL
      • AFTERORNULL

        public static final Operand AFTERORNULL
      • AFTEROREQUAL

        public static final Operand AFTEROREQUAL
    • Method Detail

      • values

        public static Operand[] 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 (Operand c : Operand.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Operand 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
      • getArity

        public java.lang.Integer getArity()