Package org.teamapps.dto
Enum UiValueMatcher.Comparator
- java.lang.Object
-
- java.lang.Enum<UiValueMatcher.Comparator>
-
- org.teamapps.dto.UiValueMatcher.Comparator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UiValueMatcher.Comparator>
- Enclosing class:
- UiValueMatcher
public static enum UiValueMatcher.Comparator extends java.lang.Enum<UiValueMatcher.Comparator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSCONTAINS_ONLY_SCRIPT_TYPECONTAINS_REGEXCONTAINS_SCRIPTCONTAINS_SCRIPT_TYPEENDS_WITHEQUALSGREATERGREATER_EQUALSLESSERLESSER_EQUALSMAXIMUM_SIZEMINIMUM_SIZEREGEX_MATCHSTARTS_WITH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intjsonValue()static UiValueMatcher.ComparatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UiValueMatcher.Comparator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final UiValueMatcher.Comparator EQUALS
-
LESSER
public static final UiValueMatcher.Comparator LESSER
-
LESSER_EQUALS
public static final UiValueMatcher.Comparator LESSER_EQUALS
-
GREATER
public static final UiValueMatcher.Comparator GREATER
-
GREATER_EQUALS
public static final UiValueMatcher.Comparator GREATER_EQUALS
-
CONTAINS
public static final UiValueMatcher.Comparator CONTAINS
-
STARTS_WITH
public static final UiValueMatcher.Comparator STARTS_WITH
-
ENDS_WITH
public static final UiValueMatcher.Comparator ENDS_WITH
-
MINIMUM_SIZE
public static final UiValueMatcher.Comparator MINIMUM_SIZE
-
MAXIMUM_SIZE
public static final UiValueMatcher.Comparator MAXIMUM_SIZE
-
REGEX_MATCH
public static final UiValueMatcher.Comparator REGEX_MATCH
-
CONTAINS_REGEX
public static final UiValueMatcher.Comparator CONTAINS_REGEX
-
CONTAINS_SCRIPT
public static final UiValueMatcher.Comparator CONTAINS_SCRIPT
-
CONTAINS_SCRIPT_TYPE
public static final UiValueMatcher.Comparator CONTAINS_SCRIPT_TYPE
-
CONTAINS_ONLY_SCRIPT_TYPE
public static final UiValueMatcher.Comparator CONTAINS_ONLY_SCRIPT_TYPE
-
-
Method Detail
-
values
public static UiValueMatcher.Comparator[] 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 (UiValueMatcher.Comparator c : UiValueMatcher.Comparator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiValueMatcher.Comparator 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 namejava.lang.NullPointerException- if the argument is null
-
jsonValue
public int jsonValue()
-
-