public static enum SortOption.Direction extends Enum<SortOption.Direction>
Enum Constant and Description |
---|
ASCENDING |
DESCENDING |
Modifier and Type | Method and Description |
---|---|
static SortOption.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortOption.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortOption.Direction ASCENDING
public static final SortOption.Direction DESCENDING
public static SortOption.Direction[] values()
for (SortOption.Direction c : SortOption.Direction.values()) System.out.println(c);
public static SortOption.Direction 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-2018–2019 SeedStack. All rights reserved.