public enum PredicateOperator extends java.lang.Enum<PredicateOperator>
| Enum Constant and Description |
|---|
IS_EMPTY |
IS_NOT_EMPTY |
| Modifier and Type | Field and Description |
|---|---|
static java.util.Map<java.lang.String,PredicateOperator> |
nameMap |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getPlural() |
java.lang.String |
getSingular() |
static PredicateOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PredicateOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredicateOperator IS_EMPTY
public static final PredicateOperator IS_NOT_EMPTY
public static final java.util.Map<java.lang.String,PredicateOperator> nameMap
public static PredicateOperator[] values()
for (PredicateOperator c : PredicateOperator.values()) System.out.println(c);
public static PredicateOperator 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 nullpublic java.lang.String getSingular()
public java.lang.String getPlural()