public static enum SortSpecification.NullOrdering extends Enum<SortSpecification.NullOrdering>
Modifier and Type | Method and Description |
---|---|
static SortSpecification.NullOrdering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortSpecification.NullOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortSpecification.NullOrdering FIRST
public static final SortSpecification.NullOrdering LAST
public static SortSpecification.NullOrdering[] values()
for (SortSpecification.NullOrdering c : SortSpecification.NullOrdering.values()) System.out.println(c);
public static SortSpecification.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 © 2013-2014 JBoss by Red Hat. All Rights Reserved.