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