public static enum Order.NullsPosition extends Enum<Order.NullsPosition>
Enum Constant and Description |
---|
FIRST |
LAST |
NOT_SPECIFIED |
Modifier and Type | Method and Description |
---|---|
static Order.NullsPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Order.NullsPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Order.NullsPosition NOT_SPECIFIED
public static final Order.NullsPosition FIRST
public static final Order.NullsPosition LAST
public static Order.NullsPosition[] values()
for (Order.NullsPosition c : Order.NullsPosition.values()) System.out.println(c);
public static Order.NullsPosition 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–2014 Semochkin Vitaly Evgenevich. All rights reserved.