public enum SortCriterium extends Enum<SortCriterium>
| Enum Constant and Description |
|---|
DATE |
DATE_AND_RELEVANCE |
RELEVANCE |
| Modifier and Type | Method and Description |
|---|---|
static SortCriterium |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortCriterium[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortCriterium DATE
public static final SortCriterium DATE_AND_RELEVANCE
public static final SortCriterium RELEVANCE
public static SortCriterium[] values()
for (SortCriterium c : SortCriterium.values()) System.out.println(c);
public static SortCriterium 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 JULIE Lab, Germany. All rights reserved.