Enum Events

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Events>

    public enum Events
    extends java.lang.Enum<Events>
    • Enum Constant Detail

      • MESSAGE_NEW

        @SerializedName("message_new")
        public static final Events MESSAGE_NEW
      • MESSAGE_REPLY

        @SerializedName("message_reply")
        public static final Events MESSAGE_REPLY
      • MESSAGE_ALLOW

        @SerializedName("message_allow")
        public static final Events MESSAGE_ALLOW
      • MESSAGE_DENY

        @SerializedName("message_deny")
        public static final Events MESSAGE_DENY
      • MESSAGE_EDIT

        @SerializedName("message_edit")
        public static final Events MESSAGE_EDIT
      • PHOTO_NEW

        @SerializedName("photo_new")
        public static final Events PHOTO_NEW
      • PHOTO_COMMENT_NEW

        @SerializedName("photo_comment_new")
        public static final Events PHOTO_COMMENT_NEW
      • PHOTO_COMMENT_EDIT

        @SerializedName("photo_comment_edit")
        public static final Events PHOTO_COMMENT_EDIT
      • PHOTO_COMMENT_RESTORE

        @SerializedName("photo_comment_restore")
        public static final Events PHOTO_COMMENT_RESTORE
      • PHOTO_COMMENT_DELETE

        @SerializedName("photo_comment_delete")
        public static final Events PHOTO_COMMENT_DELETE
      • AUDIO_NEW

        @SerializedName("audio_new")
        public static final Events AUDIO_NEW
      • VIDEO_NEW

        @SerializedName("video_new")
        public static final Events VIDEO_NEW
      • VIDEO_COMMENT_NEW

        @SerializedName("video_comment_new")
        public static final Events VIDEO_COMMENT_NEW
      • VIDEO_COMMENT_EDIT

        @SerializedName("video_comment_edit")
        public static final Events VIDEO_COMMENT_EDIT
      • VIDEO_COMMENT_RESTORE

        @SerializedName("video_comment_restore")
        public static final Events VIDEO_COMMENT_RESTORE
      • VIDEO_COMMENT_DELETE

        @SerializedName("video_comment_delete")
        public static final Events VIDEO_COMMENT_DELETE
      • WALL_POST_NEW

        @SerializedName("wall_post_new")
        public static final Events WALL_POST_NEW
      • WALL_REPOST

        @SerializedName("wall_repost")
        public static final Events WALL_REPOST
      • WALL_REPLY_NEW

        @SerializedName("wall_reply_new")
        public static final Events WALL_REPLY_NEW
      • WALL_REPLY_EDIT

        @SerializedName("wall_reply_edit")
        public static final Events WALL_REPLY_EDIT
      • WALL_REPLY_RESTORE

        @SerializedName("wall_reply_restore")
        public static final Events WALL_REPLY_RESTORE
      • WALL_REPLY_DELETE

        @SerializedName("wall_reply_delete")
        public static final Events WALL_REPLY_DELETE
      • BOARD_POST_NEW

        @SerializedName("board_post_new")
        public static final Events BOARD_POST_NEW
      • BOARD_POST_EDIT

        @SerializedName("board_post_edit")
        public static final Events BOARD_POST_EDIT
      • BOARD_POST_RESTORE

        @SerializedName("board_post_restore")
        public static final Events BOARD_POST_RESTORE
      • BOARD_POST_DELETE

        @SerializedName("board_post_delete")
        public static final Events BOARD_POST_DELETE
      • MARKET_COMMENT_NEW

        @SerializedName("market_comment_new")
        public static final Events MARKET_COMMENT_NEW
      • MARKET_COMMENT_EDIT

        @SerializedName("market_comment_edit")
        public static final Events MARKET_COMMENT_EDIT
      • MARKET_COMMENT_RESTORE

        @SerializedName("market_comment_restore")
        public static final Events MARKET_COMMENT_RESTORE
      • MARKET_COMMENT_DELETE

        @SerializedName("market_comment_delete")
        public static final Events MARKET_COMMENT_DELETE
      • GROUP_LEAVE

        @SerializedName("group_leave")
        public static final Events GROUP_LEAVE
      • GROUP_JOIN

        @SerializedName("group_join")
        public static final Events GROUP_JOIN
      • GROUP_CHANGE_SETTINGS

        @SerializedName("group_change_settings")
        public static final Events GROUP_CHANGE_SETTINGS
      • GROUP_CHANGE_PHOTO

        @SerializedName("group_change_photo")
        public static final Events GROUP_CHANGE_PHOTO
      • GROUP_OFFICERS_EDIT

        @SerializedName("group_officers_edit")
        public static final Events GROUP_OFFICERS_EDIT
      • POLL_VOTE_NEW

        @SerializedName("poll_vote_new")
        public static final Events POLL_VOTE_NEW
      • USER_BLOCK

        @SerializedName("user_block")
        public static final Events USER_BLOCK
      • USER_UNBLOCK

        @SerializedName("user_unblock")
        public static final Events USER_UNBLOCK
      • CONFIRMATION

        @SerializedName("confirmation")
        public static final Events CONFIRMATION
    • Method Detail

      • values

        public static Events[] 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 (Events c : Events.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Events 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 name
        java.lang.NullPointerException - if the argument is null
      • getType

        public java.lang.reflect.Type getType()