Enum Class Condition
- All Implemented Interfaces:
Serializable, Comparable<Condition>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIn range operator condition ([x,y]).Equal condition (==).Greater or equal condition (>=).Greater than condition (>).Less or equal condition (<=).Less than condition (<).Substring condition.Substring (no case sensitive) condition.Not equal condition (!=).Regular expression condition. -
Method Summary
-
Enum Constant Details
-
Equal
Equal condition (==).Equal condition (==).
-
GreaterEqual
Greater or equal condition (>=).Greater or equal condition (>=).
-
GreaterThan
Greater than condition (>).Greater than condition (>).
-
LessEqual
Less or equal condition (<=).Less or equal condition (<=).
-
LessThan
Less than condition (<).Less than condition (<).
-
NotEqual
Not equal condition (!=).Not equal condition (!=).
-
Like
Substring condition.Substring condition.
-
LikeNoCase
Substring (no case sensitive) condition.Substring (no case sensitive) condition.
-
Between
In range operator condition ([x,y]).In range operator condition ([x,y]).
-
RegExp
Regular expression condition.Regular expression condition.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-