Package com.vk.api.sdk.objects.callback
Enum Type
- java.lang.Object
-
- java.lang.Enum<Type>
-
- com.vk.api.sdk.objects.callback.Type
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()java.lang.StringtoString()static TypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUDIO_NEW
@SerializedName("audio_new") public static final Type AUDIO_NEW
-
BOARD_POST_NEW
@SerializedName("board_post_new") public static final Type BOARD_POST_NEW
-
BOARD_POST_EDIT
@SerializedName("board_post_edit") public static final Type BOARD_POST_EDIT
-
BOARD_POST_RESTORE
@SerializedName("board_post_restore") public static final Type BOARD_POST_RESTORE
-
BOARD_POST_DELETE
@SerializedName("board_post_delete") public static final Type BOARD_POST_DELETE
-
CONFIRMATION
@SerializedName("confirmation") public static final Type CONFIRMATION
-
GROUP_LEAVE
@SerializedName("group_leave") public static final Type GROUP_LEAVE
-
GROUP_JOIN
@SerializedName("group_join") public static final Type GROUP_JOIN
-
GROUP_CHANGE_PHOTO
@SerializedName("group_change_photo") public static final Type GROUP_CHANGE_PHOTO
-
GROUP_CHANGE_SETTINGS
@SerializedName("group_change_settings") public static final Type GROUP_CHANGE_SETTINGS
-
GROUP_OFFICERS_EDIT
@SerializedName("group_officers_edit") public static final Type GROUP_OFFICERS_EDIT
-
LEAD_FORMS_NEW
@SerializedName("lead_forms_new") public static final Type LEAD_FORMS_NEW
-
MARKET_COMMENT_NEW
@SerializedName("market_comment_new") public static final Type MARKET_COMMENT_NEW
-
MARKET_COMMENT_DELETE
@SerializedName("market_comment_delete") public static final Type MARKET_COMMENT_DELETE
-
MARKET_COMMENT_EDIT
@SerializedName("market_comment_edit") public static final Type MARKET_COMMENT_EDIT
-
MARKET_COMMENT_RESTORE
@SerializedName("market_comment_restore") public static final Type MARKET_COMMENT_RESTORE
-
MESSAGE_NEW
@SerializedName("message_new") public static final Type MESSAGE_NEW
-
MESSAGE_REPLY
@SerializedName("message_reply") public static final Type MESSAGE_REPLY
-
MESSAGE_EDIT
@SerializedName("message_edit") public static final Type MESSAGE_EDIT
-
MESSAGE_ALLOW
@SerializedName("message_allow") public static final Type MESSAGE_ALLOW
-
MESSAGE_DENY
@SerializedName("message_deny") public static final Type MESSAGE_DENY
-
MESSAGE_READ
@SerializedName("message_read") public static final Type MESSAGE_READ
-
MESSAGE_TYPING_STATE
@SerializedName("message_typing_state") public static final Type MESSAGE_TYPING_STATE
-
MESSAGES_EDIT
@SerializedName("messages_edit") public static final Type MESSAGES_EDIT
-
PHOTO_NEW
@SerializedName("photo_new") public static final Type PHOTO_NEW
-
PHOTO_COMMENT_NEW
@SerializedName("photo_comment_new") public static final Type PHOTO_COMMENT_NEW
-
PHOTO_COMMENT_DELETE
@SerializedName("photo_comment_delete") public static final Type PHOTO_COMMENT_DELETE
-
PHOTO_COMMENT_EDIT
@SerializedName("photo_comment_edit") public static final Type PHOTO_COMMENT_EDIT
-
PHOTO_COMMENT_RESTORE
@SerializedName("photo_comment_restore") public static final Type PHOTO_COMMENT_RESTORE
-
POLL_VOTE_NEW
@SerializedName("poll_vote_new") public static final Type POLL_VOTE_NEW
-
USER_BLOCK
@SerializedName("user_block") public static final Type USER_BLOCK
-
USER_UNBLOCK
@SerializedName("user_unblock") public static final Type USER_UNBLOCK
-
VIDEO_NEW
@SerializedName("video_new") public static final Type VIDEO_NEW
-
VIDEO_COMMENT_NEW
@SerializedName("video_comment_new") public static final Type VIDEO_COMMENT_NEW
-
VIDEO_COMMENT_DELETE
@SerializedName("video_comment_delete") public static final Type VIDEO_COMMENT_DELETE
-
VIDEO_COMMENT_EDIT
@SerializedName("video_comment_edit") public static final Type VIDEO_COMMENT_EDIT
-
VIDEO_COMMENT_RESTORE
@SerializedName("video_comment_restore") public static final Type VIDEO_COMMENT_RESTORE
-
WALL_POST_NEW
@SerializedName("wall_post_new") public static final Type WALL_POST_NEW
-
WALL_REPLY_NEW
@SerializedName("wall_reply_new") public static final Type WALL_REPLY_NEW
-
WALL_REPLY_EDIT
@SerializedName("wall_reply_edit") public static final Type WALL_REPLY_EDIT
-
WALL_REPLY_DELETE
@SerializedName("wall_reply_delete") public static final Type WALL_REPLY_DELETE
-
WALL_REPLY_RESTORE
@SerializedName("wall_reply_restore") public static final Type WALL_REPLY_RESTORE
-
WALL_REPOST
@SerializedName("wall_repost") public static final Type WALL_REPOST
-
-
Method Detail
-
values
public static Type[] 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 (Type c : Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Type 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<Type>
-
-