protected static enum FieldOrder.Order extends Enum<FieldOrder.Order>
Enum Constant and Description |
---|
Ascending |
Descending |
Modifier and Type | Method and Description |
---|---|
static FieldOrder.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldOrder.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldOrder.Order Descending
public static final FieldOrder.Order Ascending
public static FieldOrder.Order[] values()
for (FieldOrder.Order c : FieldOrder.Order.values()) System.out.println(c);
public static FieldOrder.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 © 2001–2024 MickaĆ«l Guessant. All rights reserved.