public static enum Trigger.TriggerState extends Enum<Trigger.TriggerState>
Enum Constant and Description |
---|
BLOCKED |
COMPLETE |
ERROR |
NONE |
NORMAL |
PAUSED |
Modifier and Type | Method and Description |
---|---|
static Trigger.TriggerState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Trigger.TriggerState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trigger.TriggerState NONE
public static final Trigger.TriggerState NORMAL
public static final Trigger.TriggerState PAUSED
public static final Trigger.TriggerState COMPLETE
public static final Trigger.TriggerState ERROR
public static final Trigger.TriggerState BLOCKED
public static Trigger.TriggerState[] values()
for (Trigger.TriggerState c : Trigger.TriggerState.values()) System.out.println(c);
public static Trigger.TriggerState 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 2001-2019, Terracotta, Inc.