public enum EventAction extends Enum<EventAction>
| Enum Constant and Description |
|---|
ERROR
Error event
|
MESSAGE
Message event, also used for escalation and signal events
|
TERMINATE
Process terminate event
|
TIMER
Timer event
|
| Modifier and Type | Method and Description |
|---|---|
static EventAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventAction ERROR
public static final EventAction TIMER
public static final EventAction MESSAGE
public static final EventAction TERMINATE
public static EventAction[] values()
for (EventAction c : EventAction.values()) System.out.println(c);
public static EventAction 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 Pivotal Software, Inc.. All rights reserved.