public enum ActionTypes extends Enum<ActionTypes> implements ActionType
| Enum Constant and Description |
|---|
ADDED
Component was added and occurred.
|
CHANGED
Component was changed (may be refined).
|
PROCESS
Something is being processed.
|
REMOVED
Component was removed and disappeared.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionTypes ADDED
public static final ActionTypes CHANGED
public static final ActionTypes REMOVED
public static final ActionTypes PROCESS
public static ActionTypes[] values()
for (ActionTypes c : ActionTypes.values()) System.out.println(c);
public static ActionTypes 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 © 2022. All rights reserved.