Package io.vertigo.datamodel.criteria
Enum CriterionOperator
- java.lang.Object
-
- java.lang.Enum<CriterionOperator>
-
- io.vertigo.datamodel.criteria.CriterionOperator
-
- All Implemented Interfaces:
Serializable
,Comparable<CriterionOperator>
public enum CriterionOperator extends Enum<CriterionOperator>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CriterionOperator
valueOf(String name)
Returns the enum constant of this type with the specified name.static CriterionOperator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_NULL
public static final CriterionOperator IS_NULL
-
IS_NOT_NULL
public static final CriterionOperator IS_NOT_NULL
-
EQ
public static final CriterionOperator EQ
-
NEQ
public static final CriterionOperator NEQ
-
GT
public static final CriterionOperator GT
-
GTE
public static final CriterionOperator GTE
-
LT
public static final CriterionOperator LT
-
LTE
public static final CriterionOperator LTE
-
STARTS_WITH
public static final CriterionOperator STARTS_WITH
-
BETWEEN
public static final CriterionOperator BETWEEN
-
IN
public static final CriterionOperator IN
-
-
Method Detail
-
values
public static CriterionOperator[] 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 (CriterionOperator c : CriterionOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CriterionOperator valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-