@Evolving public enum NullOrdering extends java.lang.Enum<NullOrdering>
Enum Constant and Description |
---|
NULLS_FIRST
Nulls appear before non-nulls.
|
NULLS_LAST
Nulls appear after non-nulls.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static NullOrdering |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NullOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NullOrdering NULLS_FIRST
public static final NullOrdering NULLS_LAST
public static NullOrdering[] values()
for (NullOrdering c : NullOrdering.values()) System.out.println(c);
public static NullOrdering 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<NullOrdering>