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