public static enum OrderByElement.NullOrdering extends Enum<OrderByElement.NullOrdering>
Enum Constant and Description |
---|
NULLS_FIRST |
NULLS_LAST |
Modifier and Type | Method and Description |
---|---|
static OrderByElement.NullOrdering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderByElement.NullOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderByElement.NullOrdering NULLS_FIRST
public static final OrderByElement.NullOrdering NULLS_LAST
public static OrderByElement.NullOrdering[] values()
for (OrderByElement.NullOrdering c : OrderByElement.NullOrdering.values()) System.out.println(c);
public static OrderByElement.NullOrdering 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 © 2006–2018 TinyGroup. All rights reserved.