public static enum ComparingPredicate.Type extends Enum<ComparingPredicate.Type>
| Enum Constant and Description |
|---|
EQUALS |
GREATER |
GREATER_EQUALS |
LESS |
LESS_EQUALS |
NOT_EQUALS |
| Modifier and Type | Method and Description |
|---|---|
static ComparingPredicate.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparingPredicate.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparingPredicate.Type LESS
public static final ComparingPredicate.Type LESS_EQUALS
public static final ComparingPredicate.Type EQUALS
public static final ComparingPredicate.Type NOT_EQUALS
public static final ComparingPredicate.Type GREATER
public static final ComparingPredicate.Type GREATER_EQUALS
public static ComparingPredicate.Type[] values()
for (ComparingPredicate.Type c : ComparingPredicate.Type.values()) System.out.println(c);
public static ComparingPredicate.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 © 2017–2024. All rights reserved.