Enum BPMNTimerEvent.TimerEvents
- java.lang.Object
-
- java.lang.Enum<BPMNTimerEvent.TimerEvents>
-
- org.activiti.api.process.model.events.BPMNTimerEvent.TimerEvents
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BPMNTimerEvent.TimerEvents>
- Enclosing interface:
- BPMNTimerEvent
public static enum BPMNTimerEvent.TimerEvents extends java.lang.Enum<BPMNTimerEvent.TimerEvents>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TIMER_CANCELLEDTIMER_EXECUTEDTIMER_FAILEDTIMER_FIREDTIMER_RETRIES_DECREMENTEDTIMER_SCHEDULED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BPMNTimerEvent.TimerEventsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BPMNTimerEvent.TimerEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIMER_SCHEDULED
public static final BPMNTimerEvent.TimerEvents TIMER_SCHEDULED
-
TIMER_FIRED
public static final BPMNTimerEvent.TimerEvents TIMER_FIRED
-
TIMER_CANCELLED
public static final BPMNTimerEvent.TimerEvents TIMER_CANCELLED
-
TIMER_EXECUTED
public static final BPMNTimerEvent.TimerEvents TIMER_EXECUTED
-
TIMER_FAILED
public static final BPMNTimerEvent.TimerEvents TIMER_FAILED
-
TIMER_RETRIES_DECREMENTED
public static final BPMNTimerEvent.TimerEvents TIMER_RETRIES_DECREMENTED
-
-
Method Detail
-
values
public static BPMNTimerEvent.TimerEvents[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BPMNTimerEvent.TimerEvents c : BPMNTimerEvent.TimerEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BPMNTimerEvent.TimerEvents valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-