public enum WorkspaceEventType extends Enum<WorkspaceEventType>
| Enum Constant and Description |
|---|
ITEM_CREATED
A new item has been created.
|
ITEM_IMPORTED
An item has been imported.
|
ITEM_REMOVED
An item has been deleted.
|
ITEM_RENAMED
An item has been renamed.
|
ITEM_SENT
An item has been sent.
|
ITEM_UPDATED
An item has been updated.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkspaceEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkspaceEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkspaceEventType ITEM_CREATED
public static final WorkspaceEventType ITEM_REMOVED
public static final WorkspaceEventType ITEM_IMPORTED
public static final WorkspaceEventType ITEM_RENAMED
public static final WorkspaceEventType ITEM_SENT
public static final WorkspaceEventType ITEM_UPDATED
public static WorkspaceEventType[] values()
for (WorkspaceEventType c : WorkspaceEventType.values()) System.out.println(c);
public static WorkspaceEventType 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 nullCopyright © 2020. All Rights Reserved.