public enum ChangeType extends java.lang.Enum<ChangeType>
| Enum Constant and Description |
|---|
ADD |
ASSIGNMENT_ADD |
ASSIGNMENT_DELETE |
DELETE_OBJECT |
MEMBER_ADD |
MEMBER_DELETE |
MOVE_AWAY |
MOVE_INTO |
NAVIGATION |
NONE |
RENAME |
RESTORE |
ROLE_ADD |
ROLE_DELETE |
ROLE_UPDATE |
SCOPE_ADD |
SCOPE_DELETE |
SYSTEM_UPDATE |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeType ADD
public static final ChangeType ASSIGNMENT_ADD
public static final ChangeType ASSIGNMENT_DELETE
public static final ChangeType DELETE_OBJECT
public static final ChangeType MEMBER_ADD
public static final ChangeType MEMBER_DELETE
public static final ChangeType MOVE_AWAY
public static final ChangeType MOVE_INTO
public static final ChangeType NAVIGATION
public static final ChangeType NONE
public static final ChangeType RENAME
public static final ChangeType RESTORE
public static final ChangeType ROLE_ADD
public static final ChangeType ROLE_DELETE
public static final ChangeType ROLE_UPDATE
public static final ChangeType SCOPE_ADD
public static final ChangeType SCOPE_DELETE
public static final ChangeType SYSTEM_UPDATE
public static final ChangeType UPDATE
public static ChangeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ChangeType[] values()
for (ChangeType c : ChangeType.values()) System.out.println(c);