public static enum SortedBy.Order extends Enum<SortedBy.Order>
| Enum Constant and Description |
|---|
ascending |
descending |
| Modifier and Type | Method and Description |
|---|---|
static SortedBy.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortedBy.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortedBy.Order ascending
public static final SortedBy.Order descending
public static SortedBy.Order[] values()
for (SortedBy.Order c : SortedBy.Order.values()) System.out.println(c);
public static SortedBy.Order 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 © 2010–2025 Smals. All rights reserved.