public static enum Sort.SortOrder extends Enum<Sort.SortOrder>
| Modifier and Type | Method and Description |
|---|---|
String |
getExternalForm() |
String |
getReverseExternalForm() |
static Sort.SortOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sort.SortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sort.SortOrder ASC
public static final Sort.SortOrder DESC
public static Sort.SortOrder[] values()
for (Sort.SortOrder c : Sort.SortOrder.values()) System.out.println(c);
public static Sort.SortOrder 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 getExternalForm()
public String getReverseExternalForm()
Copyright © 2015. All rights reserved.