Enum Class FilterRuleOperator
- All Implemented Interfaces:
Serializable,Comparable<FilterRuleOperator>,Constable
Operator used in a rule.
- Since:
- 2.6.14
- Author:
- tchemit <chemit@codelutin.com>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNot between with operator.Begins with operator.Contains operator.Not End with operator.Equals operator.Ends with operator.Greater or equals operator.Greater than operator.Is among operator.Lesser or equals operator.Lesser than operator.Not contains operator.Not equals operator.Not is among operator.Is not null operator.Is null operator. -
Method Summary
Modifier and TypeMethodDescriptionabstract Stringstatic FilterRuleOperatorReturns the enum constant of this class with the specified name.static FilterRuleOperator[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
eq
Equals operator. -
ne
Not equals operator. -
cn
Contains operator. -
nc
Not contains operator. -
bw
Begins with operator. -
bn
Not between with operator. -
ew
Ends with operator. -
en
Not End with operator. -
lt
Lesser than operator. -
le
Lesser or equals operator. -
gt
Greater than operator. -
ge
Greater or equals operator. -
nu
Is null operator. -
nn
Is not null operator. -
in
Is among operator. -
ni
Not is among operator.
-
-
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
-
toHql
-