public enum ENullOrder extends Enum<ENullOrder>
Enum Constant and Description |
---|
notSet |
nullsFirst |
nullsLast |
Modifier and Type | Method and Description |
---|---|
static ENullOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ENullOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ENullOrder notSet
public static final ENullOrder nullsFirst
public static final ENullOrder nullsLast
public static ENullOrder[] values()
for (ENullOrder c : ENullOrder.values()) System.out.println(c);
public static ENullOrder 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 null