Package de.blackrose01
Enum Postfixes
- java.lang.Object
-
- java.lang.Enum<Postfixes>
-
- de.blackrose01.Postfixes
-
- All Implemented Interfaces:
Serializable,Comparable<Postfixes>
public enum Postfixes extends Enum<Postfixes>
available postfixes to filter
-
-
Enum Constant Summary
Enum Constants Enum Constant Description And_ListEqual_Case_InsensitiveEqual_Case_SensitiveExact_Array_MatchGreaterGreater_EqualIs_NullLessLess_EqualNot_And_ListNot_EqualNot_NullNot_Or_ListOr_List
-
Field Summary
Fields Modifier and Type Field Description static StringPLACEHOLDER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPostfix()return postfix/relational operatorbooleanisOnlyNumeric()return only numeric values acceptedbooleanisRequireComparator()return comparator is requiredStringtoString()static PostfixesvalueOf(String name)Returns the enum constant of this type with the specified name.static Postfixes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
public static final Postfixes Less
-
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
-
-
Field Detail
-
PLACEHOLDER
public static final String PLACEHOLDER
- See Also:
- Constant Field Values
-
-
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 nameNullPointerException- 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
-
-