Enum Class FilterOperator
- All Implemented Interfaces:
Serializable
,Comparable<FilterOperator>
,Constable
Ease process of creating a where clause.
- Author:
- Cedrick LUNVEN (@clunven)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionContains Entry.Contains Key.Contains.Equal To.Exist.Greater Than.Greater Than Or Equal To.in.Less Than.Less Than Or Equal To.Not Equal To.in. -
Method Summary
Modifier and TypeMethodDescriptionstatic FilterOperator
Returns the enum constant of this class with the specified name.static FilterOperator[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GREATER_THAN
Greater Than. -
GREATER_THAN_OR_EQUALS_TO
Greater Than Or Equal To. -
LESS_THAN
Less Than. -
LESS_THAN_OR_EQUALS_TO
Less Than Or Equal To. -
EQUALS_TO
Equal To. -
NOT_EQUALS_TO
Not Equal To. -
IN
in. -
NOT_IN
in. -
EXISTS
Exist. -
CONTAINS
Contains. -
CONTAIN_KEY
Contains Key. -
CONTAIN_ENTRY
Contains Entry.
-
-
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
-