public static enum ValueComparator.Threshold extends Enum<ValueComparator.Threshold>
| Enum Constant and Description |
|---|
BOTH |
LOWER_ONLY |
UPPER_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static ValueComparator.Threshold |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueComparator.Threshold[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueComparator.Threshold LOWER_ONLY
public static final ValueComparator.Threshold BOTH
public static final ValueComparator.Threshold UPPER_ONLY
public static ValueComparator.Threshold[] values()
for (ValueComparator.Threshold c : ValueComparator.Threshold.values()) System.out.println(c);
public static ValueComparator.Threshold 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 © 2012–2021 Emory University. All rights reserved.