public enum NullOrdering extends Enum<NullOrdering>
Enum Constant and Description |
---|
FIRST
Null is always ordered first.
|
GREATEST
Null is treated as the greatest value.
|
LAST
Null is always ordered last.
|
SMALLEST
Null is treated as the smallest value.
|
Modifier and Type | Method and Description |
---|---|
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 SMALLEST
public static final NullOrdering GREATEST
public static final NullOrdering FIRST
public static final NullOrdering 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 nullCopyright © 2001-2021 Red Hat, Inc. All Rights Reserved.