public static enum BoxEvent.Type extends Enum<BoxEvent.Type>
Enum Constant and Description |
---|
ADD_LOGIN_ACTIVITY_DEVICE
A user logged in from a new device.
|
CHANGE_ADMIN_ROLE
An admin role changed for a user.
|
COLLAB_ADD_COLLABORATOR
A collaborator was added to a folder.
|
COLLAB_INVITE_COLLABORATOR
A collaborator was invited to a folder.
|
COMMENT_CREATE
A comment was created on a folder, file, or other comment.
|
ITEM_COPY
A file or folder was copied.
|
ITEM_CREATE
An file or folder was created.
|
ITEM_DOWNLOAD
An file or folder was downloaded.
|
ITEM_MOVE
A file or folder was moved.
|
ITEM_PREVIEW
A file was previewed.
|
ITEM_RENAME
A file or folder was renamed.
|
ITEM_SHARED
A folder was shared.
|
ITEM_SHARED_CREATE
A file or folder was enabled for sharing.
|
ITEM_SHARED_UNSHARE
A file or folder was disabled for sharing.
|
ITEM_SYNC
A folder was marked for sync.
|
ITEM_TRASH
A file or folder was deleted.
|
ITEM_UNDELETE_VIA_TRASH
A file or folder was recovered from the trash.
|
ITEM_UNSYNC
A folder was un-marked for sync.
|
ITEM_UPLOAD
An file or folder was uploaded.
|
LOCK_CREATE
A file was locked.
|
LOCK_DESTROY
A file was unlocked.
|
REMOVE_LOGIN_ACTIVITY_DEVICE
A user session associated with an app was invalidated.
|
TAG_ITEM_CREATE
A tag was added to a file or folder.
|
TASK_ASSIGNMENT_CREATE
A task was assigned.
|
Modifier and Type | Method and Description |
---|---|
static BoxEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxEvent.Type ITEM_CREATE
public static final BoxEvent.Type ITEM_UPLOAD
public static final BoxEvent.Type COMMENT_CREATE
public static final BoxEvent.Type ITEM_DOWNLOAD
public static final BoxEvent.Type ITEM_PREVIEW
public static final BoxEvent.Type ITEM_MOVE
public static final BoxEvent.Type ITEM_COPY
public static final BoxEvent.Type TASK_ASSIGNMENT_CREATE
public static final BoxEvent.Type LOCK_CREATE
public static final BoxEvent.Type LOCK_DESTROY
public static final BoxEvent.Type ITEM_TRASH
public static final BoxEvent.Type ITEM_UNDELETE_VIA_TRASH
public static final BoxEvent.Type COLLAB_ADD_COLLABORATOR
public static final BoxEvent.Type COLLAB_INVITE_COLLABORATOR
public static final BoxEvent.Type ITEM_SYNC
public static final BoxEvent.Type ITEM_UNSYNC
public static final BoxEvent.Type ITEM_RENAME
public static final BoxEvent.Type ITEM_SHARED_CREATE
public static final BoxEvent.Type ITEM_SHARED_UNSHARE
public static final BoxEvent.Type ITEM_SHARED
public static final BoxEvent.Type TAG_ITEM_CREATE
public static final BoxEvent.Type ADD_LOGIN_ACTIVITY_DEVICE
public static final BoxEvent.Type REMOVE_LOGIN_ACTIVITY_DEVICE
public static final BoxEvent.Type CHANGE_ADMIN_ROLE
public static BoxEvent.Type[] values()
for (BoxEvent.Type c : BoxEvent.Type.values()) System.out.println(c);
public static BoxEvent.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null