public enum SortType extends Enum<SortType>
| Enum Constant and Description |
|---|
SORT_BY_CATEGORY |
SORT_BY_COUNTED |
SORT_BY_DATE |
SORT_BY_EDITOR |
SORT_BY_MEAN |
SORT_BY_NAME |
SORT_BY_NONE |
SORT_BY_POINTS |
SORT_BY_RELEASED |
SORT_BY_SORTING |
| Modifier and Type | Method and Description |
|---|---|
static SortType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortType SORT_BY_NONE
public static final SortType SORT_BY_DATE
public static final SortType SORT_BY_NAME
public static final SortType SORT_BY_MEAN
public static final SortType SORT_BY_POINTS
public static final SortType SORT_BY_RELEASED
public static final SortType SORT_BY_COUNTED
public static final SortType SORT_BY_EDITOR
public static final SortType SORT_BY_CATEGORY
public static final SortType SORT_BY_SORTING
public static SortType[] values()
for (SortType c : SortType.values()) System.out.println(c);
public static 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 © 2003–2019 Sakai Project. All rights reserved.