public enum SearchSort extends java.lang.Enum<SearchSort> implements EnumParam
| Enum Constant and Description |
|---|
ATTENDANCE |
COMMENTS |
DEFAULT |
ENTRIES |
GROWTH |
LIKES |
MEMBERS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static SearchSort |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchSort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="0") public static final SearchSort DEFAULT
@SerializedName(value="1") public static final SearchSort GROWTH
@SerializedName(value="2") public static final SearchSort ATTENDANCE
@SerializedName(value="3") public static final SearchSort LIKES
@SerializedName(value="4") public static final SearchSort COMMENTS
@SerializedName(value="5") public static final SearchSort ENTRIES
@SerializedName(value="6") public static final SearchSort MEMBERS
public static SearchSort[] values()
for (SearchSort c : SearchSort.values()) System.out.println(c);
public static SearchSort valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<SearchSort>