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