public static enum Sort.NullHandling extends java.lang.Enum<Sort.NullHandling>
Sort.Order.| Enum Constant | 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 | Description |
|---|---|---|
static Sort.NullHandling |
valueOf(java.lang.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(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 nullCopyright © 2014–2020 Blazebit. All rights reserved.