public static enum Application.EnumOrderingType extends Enum<Application.EnumOrderingType>
| Enum Constant and Description |
|---|
NULL |
VALUE_ASCENDING |
VALUE_DESCENDING |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Application.EnumOrderingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Application.EnumOrderingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Application.EnumOrderingType VALUE_ASCENDING
public static final Application.EnumOrderingType VALUE_DESCENDING
public static final Application.EnumOrderingType NULL
public static Application.EnumOrderingType[] values()
for (Application.EnumOrderingType c : Application.EnumOrderingType.values()) System.out.println(c);
public static Application.EnumOrderingType 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 nullpublic String toString()
toString in class Enum<Application.EnumOrderingType>Copyright © 2018. All rights reserved.