public enum NullOrdering extends Enum<NullOrdering>
| Enum Constant and Description |
|---|
ANY |
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 final NullOrdering ANY
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>Copyright © 2024 Alibaba Cloud Computing. All rights reserved.