public static enum Range.SortDataOption extends Enum<Range.SortDataOption>
| Enum Constant and Description |
|---|
NORMAL_DEFAULT |
TEXT_AS_NUMBERS |
| Modifier and Type | Method and Description |
|---|---|
static Range.SortDataOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Range.SortDataOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Range.SortDataOption NORMAL_DEFAULT
public static final Range.SortDataOption TEXT_AS_NUMBERS
public static Range.SortDataOption[] values()
for (Range.SortDataOption c : Range.SortDataOption.values()) System.out.println(c);
public static Range.SortDataOption 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 © 2020. All rights reserved.