Enum Postfixes

    • Enum Constant Detail

      • Equal_Case_Sensitive

        public static final Postfixes Equal_Case_Sensitive
      • Equal_Case_Insensitive

        public static final Postfixes Equal_Case_Insensitive
      • Not_Equal

        public static final Postfixes Not_Equal
      • Greater

        public static final Postfixes Greater
      • Greater_Equal

        public static final Postfixes Greater_Equal
      • Less_Equal

        public static final Postfixes Less_Equal
      • Not_Null

        public static final Postfixes Not_Null
      • Is_Null

        public static final Postfixes Is_Null
      • And_List

        public static final Postfixes And_List
      • Not_And_List

        public static final Postfixes Not_And_List
      • Or_List

        public static final Postfixes Or_List
      • Not_Or_List

        public static final Postfixes Not_Or_List
      • Exact_Array_Match

        public static final Postfixes Exact_Array_Match
    • Method Detail

      • values

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

        public static Postfixes 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
      • getPostfix

        public String getPostfix()
        return postfix/relational operator
        Returns:
        postfix
      • isRequireComparator

        public boolean isRequireComparator()
        return comparator is required
        Returns:
        postfix requires second comparator
      • isOnlyNumeric

        public boolean isOnlyNumeric()
        return only numeric values accepted
        Returns:
        postfix only accept numeric values