public enum CountersFilter extends java.lang.Enum<CountersFilter> implements EnumParam
| Enum Constant and Description |
|---|
APP_REQUESTS |
EVENTS |
FAVES |
FRIENDS |
FRIENDS_RECOMMENDATIONS |
GIFTS |
GROUPS |
MEMORIES |
MESSAGES |
NOTES |
NOTIFICATIONS |
PHOTOS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static CountersFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CountersFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="app_requests") public static final CountersFilter APP_REQUESTS
@SerializedName(value="events") public static final CountersFilter EVENTS
@SerializedName(value="friends") public static final CountersFilter FRIENDS
@SerializedName(value="friends_recommendations") public static final CountersFilter FRIENDS_RECOMMENDATIONS
@SerializedName(value="gifts") public static final CountersFilter GIFTS
@SerializedName(value="groups") public static final CountersFilter GROUPS
@SerializedName(value="messages") public static final CountersFilter MESSAGES
@SerializedName(value="notes") public static final CountersFilter NOTES
@SerializedName(value="notifications") public static final CountersFilter NOTIFICATIONS
@SerializedName(value="photos") public static final CountersFilter PHOTOS
@SerializedName(value="faves") public static final CountersFilter FAVES
@SerializedName(value="memories") public static final CountersFilter MEMORIES
public static CountersFilter[] values()
for (CountersFilter c : CountersFilter.values()) System.out.println(c);
public static CountersFilter 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<CountersFilter>