Package com.vk.api.sdk.objects.account
Enum GetCountersFilter
- java.lang.Object
-
- java.lang.Enum<GetCountersFilter>
-
- com.vk.api.sdk.objects.account.GetCountersFilter
-
- All Implemented Interfaces:
EnumParam,java.io.Serializable,java.lang.Comparable<GetCountersFilter>
public enum GetCountersFilter extends java.lang.Enum<GetCountersFilter> implements EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_REQUESTSEVENTSFRIENDSFRIENDS_RECOMMENDATIONSFRIENDS_SUGGESTIONSGIFTSGROUPSMESSAGESNOTESNOTIFICATIONSPHOTOSSDK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()java.lang.StringtoString()static GetCountersFiltervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GetCountersFilter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FRIENDS
@SerializedName("friends") public static final GetCountersFilter FRIENDS
-
MESSAGES
@SerializedName("messages") public static final GetCountersFilter MESSAGES
-
PHOTOS
@SerializedName("photos") public static final GetCountersFilter PHOTOS
-
NOTES
@SerializedName("notes") public static final GetCountersFilter NOTES
-
GIFTS
@SerializedName("gifts") public static final GetCountersFilter GIFTS
-
EVENTS
@SerializedName("events") public static final GetCountersFilter EVENTS
-
GROUPS
@SerializedName("groups") public static final GetCountersFilter GROUPS
-
SDK
@SerializedName("sdk") public static final GetCountersFilter SDK
-
FRIENDS_SUGGESTIONS
@SerializedName("friends_suggestions") public static final GetCountersFilter FRIENDS_SUGGESTIONS
-
NOTIFICATIONS
@SerializedName("notifications") public static final GetCountersFilter NOTIFICATIONS
-
APP_REQUESTS
@SerializedName("app_requests") public static final GetCountersFilter APP_REQUESTS
-
FRIENDS_RECOMMENDATIONS
@SerializedName("friends_recommendations") public static final GetCountersFilter FRIENDS_RECOMMENDATIONS
-
-
Method Detail
-
values
public static GetCountersFilter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GetCountersFilter c : GetCountersFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GetCountersFilter valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<GetCountersFilter>
-
-