public static enum Sort.NullHandling extends Enum<Sort.NullHandling>
Sort.Order.| Enum Constant and Description |
|---|
NATIVE
Specifies that the underlying default null handling should be applied.
|
NULLS_FIRST
Specifies that
NULLs are ordered before other values. |
NULLS_LAST
Specifies that
NULLs are ordered after other values. |
| Modifier and Type | Method and Description |
|---|---|
static Sort.NullHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sort.NullHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sort.NullHandling NATIVE
public static final Sort.NullHandling NULLS_FIRST
NULLs are ordered before other values.public static final Sort.NullHandling NULLS_LAST
NULLs are ordered after other values.public static Sort.NullHandling[] values()
for (Sort.NullHandling c : Sort.NullHandling.values()) System.out.println(c);
public static Sort.NullHandling 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 © 2014–2018 Blazebit. All rights reserved.