public static enum Predicate.Op extends java.lang.Enum<Predicate.Op> implements java.io.Serializable
Enum Constant and Description |
---|
EQUALS |
GREATER_THAN |
GREATER_THAN_OR_EQ |
LESS_THAN |
LESS_THAN_OR_EQ |
LIKE |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static Predicate.Op |
getOp(int i)
Interface to access operations by integer value for command-line
convenience.
|
java.lang.String |
toString() |
static Predicate.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Predicate.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Predicate.Op EQUALS
public static final Predicate.Op GREATER_THAN
public static final Predicate.Op LESS_THAN
public static final Predicate.Op LESS_THAN_OR_EQ
public static final Predicate.Op GREATER_THAN_OR_EQ
public static final Predicate.Op LIKE
public static final Predicate.Op NOT_EQUALS
public static Predicate.Op[] values()
for (Predicate.Op c : Predicate.Op.values()) System.out.println(c);
public static Predicate.Op 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 static Predicate.Op getOp(int i)
i
- a valid integer Op indexpublic java.lang.String toString()
toString
in class java.lang.Enum<Predicate.Op>