public static enum SortedNumericSelector.Type extends Enum<SortedNumericSelector.Type>
Enum Constant and Description |
---|
MAX
Selects the maximum value in the set
|
MIN
Selects the minimum value in the set
|
Modifier and Type | Method and Description |
---|---|
static SortedNumericSelector.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortedNumericSelector.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortedNumericSelector.Type MIN
public static final SortedNumericSelector.Type MAX
public static SortedNumericSelector.Type[] values()
for (SortedNumericSelector.Type c : SortedNumericSelector.Type.values()) System.out.println(c);
public static SortedNumericSelector.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 © 2000-2019 Apache Software Foundation. All Rights Reserved.