public static enum IBinaryPredicate.Predicate extends Enum<IBinaryPredicate.Predicate>
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static IBinaryPredicate.Predicate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IBinaryPredicate.Predicate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IBinaryPredicate.Predicate EQUAL
public static final IBinaryPredicate.Predicate NOT_EQUAL
public static final IBinaryPredicate.Predicate LESS
public static final IBinaryPredicate.Predicate LESS_OR_EQUAL
public static final IBinaryPredicate.Predicate GREATER
public static final IBinaryPredicate.Predicate GREATER_OR_EQUAL
public static IBinaryPredicate.Predicate[] values()
for (IBinaryPredicate.Predicate c : IBinaryPredicate.Predicate.values()) System.out.println(c);
public static IBinaryPredicate.Predicate 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 © 2006-2013. All Rights Reserved.