Enum Operator

    • Enum Constant Detail

      • eq

        public static final Operator eq
        Equal to operator
      • ne

        public static final Operator ne
        Not equal to operator
      • gt

        public static final Operator gt
        Greater than operator
      • gte

        public static final Operator gte
        Greater than equal to operator
      • lt

        public static final Operator lt
        Less than operator
      • lte

        public static final Operator lte
        Less than equal to operator
      • startsWith

        public static final Operator startsWith
        Starts with value operator
      • dontStartsWith

        public static final Operator dontStartsWith
        Don't Starts With value operator
      • endsWith

        public static final Operator endsWith
        Ends With value operator
      • dontEndsWith

        public static final Operator dontEndsWith
        Don't Ends With value operator
      • contains

        public static final Operator contains
        Contains value operator
      • dontContains

        public static final Operator dontContains
        Don't Contains value operator
    • Method Detail

      • values

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

        public static Operator valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getOp

        public String getOp()