public static enum OrderByProperties.NullsOrdering extends java.lang.Enum<OrderByProperties.NullsOrdering>
| Enum Constant and Description |
|---|
NULLS_FIRST |
NULLS_LAST |
| Modifier and Type | Method and Description |
|---|---|
static OrderByProperties.NullsOrdering |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OrderByProperties.NullsOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderByProperties.NullsOrdering NULLS_FIRST
public static final OrderByProperties.NullsOrdering NULLS_LAST
public static OrderByProperties.NullsOrdering[] values()
for (OrderByProperties.NullsOrdering c : OrderByProperties.NullsOrdering.values()) System.out.println(c);
public static OrderByProperties.NullsOrdering valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null