public static enum SortColInfo.Order extends Enum<SortColInfo.Order>
Enum Constant and Description |
---|
ASCENDING |
DESCENDING |
Modifier and Type | Method and Description |
---|---|
static SortColInfo.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortColInfo.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortColInfo.Order ASCENDING
public static final SortColInfo.Order DESCENDING
public static SortColInfo.Order[] values()
for (SortColInfo.Order c : SortColInfo.Order.values()) System.out.println(c);
public static SortColInfo.Order 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 © 2007-2017 The Apache Software Foundation