@Experimental public enum NullOrdering extends Enum<NullOrdering>
Enum Constant and Description |
---|
NULLS_FIRST |
NULLS_LAST |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static NullOrdering |
valueOf(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(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 nullpublic String toString()
toString
in class Enum<NullOrdering>