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 ConstantDescriptionType identifying theAnd
constraintType identifying theGreaterThan
constraintType identifying theGreaterThanEqual
constraintType identifying theEqual
constraintType identifying theIn
constraintType identifying theIsNull
constraintType identifying theNotEqual
constraintType identifying theIsNotNull
constraintType identifying theOr
constraintType identifying theLike
constraintType identifying theLessThan
constraintType identifying theLessThanEqual
constraint -
Method Summary
Modifier and TypeMethodDescriptionstatic Constraint.Type
Returns 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 theAnd
constraint- Since:
- 5.0.100
-
OR
Type identifying theOr
constraint- Since:
- 5.0.100
-
EQUAL
Type identifying theEqual
constraint- Since:
- 4.0.17
-
PATTERN
Type identifying theLike
constraint- Since:
- 4.0.17
-
NOT_NULL
Type identifying theIsNotNull
constraint- Since:
- 4.0.17
-
IS_NULL
Type identifying theIsNull
constraint- Since:
- 4.0.17
-
NOT_EQUAL
Type identifying theNotEqual
constraint- Since:
- 4.0.17
-
BIGGER
Type identifying theGreaterThan
constraint- Since:
- 4.0.17
-
BIGGER_OR_EQUAL
Type identifying theGreaterThanEqual
constraint- Since:
- 4.0.17
-
SMALLER
Type identifying theLessThan
constraint- Since:
- 4.0.17
-
SMALLER_OR_EQUAL
Type identifying theLessThanEqual
constraint- Since:
- 4.0.17
-
IN
Type identifying theIn
constraint- 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
-