Package com.smartsheet.api.models.enums
Enum EventAction
- java.lang.Object
-
- java.lang.Enum<EventAction>
-
- com.smartsheet.api.models.enums.EventAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EventAction>
public enum EventAction extends java.lang.Enum<EventAction>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EventAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EventAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE
public static final EventAction CREATE
-
UPDATE
public static final EventAction UPDATE
-
LOAD
public static final EventAction LOAD
-
DELETE
public static final EventAction DELETE
-
PURGE
public static final EventAction PURGE
-
RESTORE
public static final EventAction RESTORE
-
RENAME
public static final EventAction RENAME
-
ACTIVATE
public static final EventAction ACTIVATE
-
DEACTIVATE
public static final EventAction DEACTIVATE
-
EXPORT
public static final EventAction EXPORT
-
MOVE
public static final EventAction MOVE
-
MOVE_ROW
public static final EventAction MOVE_ROW
-
COPY_ROW
public static final EventAction COPY_ROW
-
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
-
ADD_SHARE
public static final EventAction ADD_SHARE
-
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_ROW
public static final EventAction SEND_ROW
-
SEND
public static final EventAction SEND
-
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
-
AUTHORIZE
public static final EventAction AUTHORIZE
-
REVOKE
public static final EventAction REVOKE
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-