public static enum Order.NullHandlingEnum extends Enum<Order.NullHandlingEnum>
| Enum Constant and Description |
|---|
NATIVE |
NULLS_FIRST |
NULLS_LAST |
| Modifier and Type | Method and Description |
|---|---|
static Order.NullHandlingEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static Order.NullHandlingEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Order.NullHandlingEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Order.NullHandlingEnum NATIVE
public static final Order.NullHandlingEnum NULLS_FIRST
public static final Order.NullHandlingEnum NULLS_LAST
public static Order.NullHandlingEnum[] values()
for (Order.NullHandlingEnum c : Order.NullHandlingEnum.values()) System.out.println(c);
public static Order.NullHandlingEnum 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 getValue()
public String toString()
toString in class Enum<Order.NullHandlingEnum>public static Order.NullHandlingEnum fromValue(String text)