public static enum JavaUtil.SortType extends java.lang.Enum<JavaUtil.SortType>
| Enum Constant and Description |
|---|
IGNORE_CASE |
NUMERIC |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static JavaUtil.SortType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JavaUtil.SortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaUtil.SortType NUMERIC
public static final JavaUtil.SortType TEXT
public static final JavaUtil.SortType IGNORE_CASE
public static JavaUtil.SortType[] values()
for (JavaUtil.SortType c : JavaUtil.SortType.values()) System.out.println(c);
public static JavaUtil.SortType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null