public enum HintSection extends java.lang.Enum<HintSection> implements EnumParam
| Enum Constant and Description |
|---|
CORRESPONDENTS |
EVENTS |
FRIENDS |
GROUPS |
MUTUAL_FRIENDS |
PEOPLE |
PROMO |
PUBLICS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static HintSection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HintSection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="groups") public static final HintSection GROUPS
@SerializedName(value="events") public static final HintSection EVENTS
@SerializedName(value="publics") public static final HintSection PUBLICS
@SerializedName(value="correspondents") public static final HintSection CORRESPONDENTS
@SerializedName(value="people") public static final HintSection PEOPLE
@SerializedName(value="friends") public static final HintSection FRIENDS
@SerializedName(value="mutual_friends") public static final HintSection MUTUAL_FRIENDS
@SerializedName(value="promo") public static final HintSection PROMO
public static HintSection[] values()
for (HintSection c : HintSection.values()) System.out.println(c);
public static HintSection 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<HintSection>