Package de.espirit.or.query
Enum Class Constraint.Type
- All Implemented Interfaces:
Serializable,Comparable<Constraint.Type>,Constable
- Enclosing interface:
- Constraint
Enum specifiying the type of the constraint.
- Since:
- 4.0.17
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionType identifying theAndconstraintType identifying theGreaterThanconstraintType identifying theGreaterThanEqualconstraintType identifying theEqualconstraintType identifying theInconstraintType identifying theIsNullconstraintType identifying theNotEqualconstraintType identifying theIsNotNullconstraintType identifying theOrconstraintType identifying theLikeconstraintType identifying theLessThanconstraintType identifying theLessThanEqualconstraint -
Method Summary
Modifier and TypeMethodDescriptionstatic Constraint.TypeReturns the enum constant of this class with the specified name.static Constraint.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AND
Type identifying theAndconstraint- Since:
- 5.0.100
-
OR
Type identifying theOrconstraint- Since:
- 5.0.100
-
EQUAL
Type identifying theEqualconstraint- Since:
- 4.0.17
-
PATTERN
Type identifying theLikeconstraint- Since:
- 4.0.17
-
NOT_NULL
Type identifying theIsNotNullconstraint- Since:
- 4.0.17
-
IS_NULL
Type identifying theIsNullconstraint- Since:
- 4.0.17
-
NOT_EQUAL
Type identifying theNotEqualconstraint- Since:
- 4.0.17
-
BIGGER
Type identifying theGreaterThanconstraint- Since:
- 4.0.17
-
BIGGER_OR_EQUAL
Type identifying theGreaterThanEqualconstraint- Since:
- 4.0.17
-
SMALLER
Type identifying theLessThanconstraint- Since:
- 4.0.17
-
SMALLER_OR_EQUAL
Type identifying theLessThanEqualconstraint- Since:
- 4.0.17
-
IN
Type identifying theInconstraint- Since:
- 4.0.17
-
-
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
-