public enum TriggerEventProcessorStage extends Enum<TriggerEventProcessorStage>
Enum Constant and Description |
---|
ABORTED |
AFTER_ACTION |
BEFORE_ACTION |
FAILED |
IGNORED |
STARTED |
SUCCEEDED |
Modifier and Type | Method and Description |
---|---|
static TriggerEventProcessorStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriggerEventProcessorStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriggerEventProcessorStage STARTED
public static final TriggerEventProcessorStage ABORTED
public static final TriggerEventProcessorStage SUCCEEDED
public static final TriggerEventProcessorStage FAILED
public static final TriggerEventProcessorStage BEFORE_ACTION
public static final TriggerEventProcessorStage AFTER_ACTION
public static final TriggerEventProcessorStage IGNORED
public static TriggerEventProcessorStage[] values()
for (TriggerEventProcessorStage c : TriggerEventProcessorStage.values()) System.out.println(c);
public static TriggerEventProcessorStage 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 © 2000-2017 Apache Software Foundation. All Rights Reserved.