public static enum PropertyPredicate.RelationalOperation extends java.lang.Enum<PropertyPredicate.RelationalOperation>
Enum Constant and Description |
---|
EQUAL
The enum represents the "equals" relational operator.
|
NOT_EQUAL
The enum represents the "not equals" relational operator.
|
Modifier and Type | Method and Description |
---|---|
static PropertyPredicate.RelationalOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyPredicate.RelationalOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyPredicate.RelationalOperation EQUAL
public static final PropertyPredicate.RelationalOperation NOT_EQUAL
public static PropertyPredicate.RelationalOperation[] values()
for (PropertyPredicate.RelationalOperation c : PropertyPredicate.RelationalOperation.values()) System.out.println(c);
public static PropertyPredicate.RelationalOperation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null