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