Enum EventAction

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

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

      • DEACTIVATE

        public static final EventAction DEACTIVATE
      • SAVE_AS_NEW

        public static final EventAction SAVE_AS_NEW
      • SAVE_AS_TEMPLATE

        public static final EventAction SAVE_AS_TEMPLATE
      • ADD_PUBLISH

        public static final EventAction ADD_PUBLISH
      • REMOVE_PUBLISH

        public static final EventAction REMOVE_PUBLISH
      • REMOVE_SHARE

        public static final EventAction REMOVE_SHARE
      • ADD_SHARE_MEMBER

        public static final EventAction ADD_SHARE_MEMBER
      • REMOVE_SHARE_MEMBER

        public static final EventAction REMOVE_SHARE_MEMBER
      • ADD_WORKSPACE_SHARE

        public static final EventAction ADD_WORKSPACE_SHARE
      • REMOVE_WORKSPACE_SHARE

        public static final EventAction REMOVE_WORKSPACE_SHARE
      • ADD_MEMBER

        public static final EventAction ADD_MEMBER
      • REMOVE_MEMBER

        public static final EventAction REMOVE_MEMBER
      • TRANSFER_OWNERSHIP

        public static final EventAction TRANSFER_OWNERSHIP
      • CREATE_CELL_LINK

        public static final EventAction CREATE_CELL_LINK
      • REMOVE_SHARES

        public static final EventAction REMOVE_SHARES
      • TRANSFER_OWNED_GROUPS

        public static final EventAction TRANSFER_OWNED_GROUPS
      • TRANSFER_OWNED_ITEMS

        public static final EventAction TRANSFER_OWNED_ITEMS
      • DOWNLOAD_SHEET_ACCESS_REPORT

        public static final EventAction DOWNLOAD_SHEET_ACCESS_REPORT
      • DOWNLOAD_USER_LIST

        public static final EventAction DOWNLOAD_USER_LIST
      • DOWNLOAD_LOGIN_HISTORY

        public static final EventAction DOWNLOAD_LOGIN_HISTORY
      • DOWNLOAD_PUBLISHED_ITEMS_REPORT

        public static final EventAction DOWNLOAD_PUBLISHED_ITEMS_REPORT
      • UPDATE_MAIN_CONTACT

        public static final EventAction UPDATE_MAIN_CONTACT
      • IMPORT_USERS

        public static final EventAction IMPORT_USERS
      • BULK_UPDATE

        public static final EventAction BULK_UPDATE
      • LIST_SHEETS

        public static final EventAction LIST_SHEETS
      • REQUEST_BACKUP

        public static final EventAction REQUEST_BACKUP
      • CREATE_RECURRING_BACKUP

        public static final EventAction CREATE_RECURRING_BACKUP
      • UPDATE_RECURRING_BACKUP

        public static final EventAction UPDATE_RECURRING_BACKUP
      • DELETE_RECURRING_BACKUP

        public static final EventAction DELETE_RECURRING_BACKUP
      • REMOVE_FROM_GROUPS

        public static final EventAction REMOVE_FROM_GROUPS
      • SEND_AS_ATTACHMENT

        public static final EventAction SEND_AS_ATTACHMENT
      • SEND_COMMENT

        public static final EventAction SEND_COMMENT
      • SEND_INVITE

        public static final EventAction SEND_INVITE
      • DECLINE_INVITE

        public static final EventAction DECLINE_INVITE
      • ACCEPT_INVITE

        public static final EventAction ACCEPT_INVITE
      • SEND_PASSWORD_RESET

        public static final EventAction SEND_PASSWORD_RESET
      • REMOVE_FROM_ACCOUNT

        public static final EventAction REMOVE_FROM_ACCOUNT
      • ADD_TO_ACCOUNT

        public static final EventAction ADD_TO_ACCOUNT
    • Method Detail

      • values

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

        public static EventAction 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