public enum GroupsSearchSort extends java.lang.Enum<GroupsSearchSort> implements EnumParam
Enum Constant and Description |
---|
BY_BOARD_ENTRIES_NUMBER_PER_MEMBERS_NUMBER_RATIO
by the "boards entries number/members number" ratio.
|
BY_COMMENTS_NUMBER_PER_MEMBERS_NUMBER_RATIO
by the "comments number/members number" ratio;
|
BY_DAY_ATTENDANCE_PER_MEMBERS_NUMBER_RATIO
by the "day attendance/members number" ratio;
|
BY_GROWTH_SPEED
by growth speed;
|
BY_LIKES_NUMBER_PER_MEMBERS_NUMBER_RATIO
by the "Likes number/members number" ratio;
|
DEFAULT
default sorting (similar th the full version of the site);
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static GroupsSearchSort |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupsSearchSort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupsSearchSort DEFAULT
public static final GroupsSearchSort BY_GROWTH_SPEED
public static final GroupsSearchSort BY_DAY_ATTENDANCE_PER_MEMBERS_NUMBER_RATIO
public static final GroupsSearchSort BY_LIKES_NUMBER_PER_MEMBERS_NUMBER_RATIO
public static final GroupsSearchSort BY_COMMENTS_NUMBER_PER_MEMBERS_NUMBER_RATIO
public static final GroupsSearchSort BY_BOARD_ENTRIES_NUMBER_PER_MEMBERS_NUMBER_RATIO
public static GroupsSearchSort[] values()
for (GroupsSearchSort c : GroupsSearchSort.values()) System.out.println(c);
public static GroupsSearchSort 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 null