Enum FilterRuleOperator
java.lang.Object
java.lang.Enum<FilterRuleOperator>
org.nuiton.topia.persistence.pager.FilterRuleOperator
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FilterRuleOperator>,java.lang.constant.Constable
public enum FilterRuleOperator extends java.lang.Enum<FilterRuleOperator>
Operator used in a rule.
- Since:
- 2.6.14
- Author:
- tchemit <chemit@codelutin.com>
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description bnNot between with operator.bwBegins with operator.cnContains operator.enNot End with operator.eqEquals operator.ewEnds with operator.geGreater or equals operator.gtGreater than operator.inIs among operator.leLesser or equals operator.ltLesser than operator.ncNot contains operator.neNot equals operator.niNot is among operator.nnIs not null operator.nuIs null operator. -
Method Summary
Modifier and Type Method Description abstract java.lang.StringtoHql(java.lang.String paramName, java.lang.String propertyName, java.lang.Object data, java.util.Map<java.lang.String,java.lang.Object> filterParams)static FilterRuleOperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FilterRuleOperator[]values()Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
toHql
public abstract java.lang.String toHql(java.lang.String paramName, java.lang.String propertyName, java.lang.Object data, java.util.Map<java.lang.String,java.lang.Object> filterParams)
-