public static enum Constraint.Type extends Enum<Constraint.Type>
Enum Constant and Description |
---|
AND
Type identifying the
And constraint |
BIGGER
Type identifying the
GreaterThan constraint |
BIGGER_OR_EQUAL
Type identifying the
GreaterThanEqual constraint |
EQUAL
Type identifying the
Equal constraint |
IN
Type identifying the
In constraint |
IS_NULL
Type identifying the
IsNull constraint |
NOT_EQUAL
Type identifying the
NotEqual constraint |
NOT_NULL
Type identifying the
IsNotNull constraint |
OR
Type identifying the
Or constraint |
PATTERN
Type identifying the
Like constraint |
SMALLER
Type identifying the
LessThan constraint |
SMALLER_OR_EQUAL
Type identifying the
LessThanEqual constraint |
Modifier and Type | Method and Description |
---|---|
static Constraint.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constraint.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constraint.Type AND
And
constraintpublic static final Constraint.Type OR
Or
constraintpublic static final Constraint.Type EQUAL
Equal
constraintpublic static final Constraint.Type PATTERN
Like
constraintpublic static final Constraint.Type NOT_NULL
IsNotNull
constraintpublic static final Constraint.Type IS_NULL
IsNull
constraintpublic static final Constraint.Type NOT_EQUAL
NotEqual
constraintpublic static final Constraint.Type BIGGER
GreaterThan
constraintpublic static final Constraint.Type BIGGER_OR_EQUAL
GreaterThanEqual
constraintpublic static final Constraint.Type SMALLER
LessThan
constraintpublic static final Constraint.Type SMALLER_OR_EQUAL
LessThanEqual
constraintpublic static final Constraint.Type IN
In
constraintpublic static Constraint.Type[] values()
for (Constraint.Type c : Constraint.Type.values()) System.out.println(c);
public static Constraint.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2014 e-Spirit AG. All Rights Reserved. Build 5.0_BETA.500