public enum ActionType extends Enum<ActionType>
| Enum Constant and Description |
|---|
ALL_CRUD
When an object is Created/Updated/Read/Deleted
|
CREATE
When an object is created
|
DELETE
When an object is deleted
|
READ
When an object is read
|
TYPE_FOLDER_CREATION
When the node type folder is created.
|
TYPE_REGISTRATION
This is not being currently used.
|
UPDATE
When an object is updated
|
| Modifier and Type | Method and Description |
|---|---|
static ActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionType TYPE_REGISTRATION
public static final ActionType CREATE
public static final ActionType UPDATE
public static final ActionType DELETE
public static final ActionType READ
public static final ActionType ALL_CRUD
public static final ActionType TYPE_FOLDER_CREATION
Node. All nodes belonging to
a node type are persisted in that folder.public static ActionType[] values()
for (ActionType c : ActionType.values()) System.out.println(c);
public static ActionType 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 © 1982–2023 Adobe Systems Incorporated. All rights reserved.