public static enum ComputationService.Event extends java.lang.Enum<ComputationService.Event>
Enum Constant and Description |
---|
CANCEL |
CLEAN |
CONFIGURE |
FAILED |
FINISHED_SUCCESSFULLY |
PAUSE |
RESUME |
START |
TERMINATE |
Modifier and Type | Method and Description |
---|---|
static ComputationService.Event |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComputationService.Event[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComputationService.Event CONFIGURE
public static final ComputationService.Event START
public static final ComputationService.Event PAUSE
public static final ComputationService.Event RESUME
public static final ComputationService.Event CANCEL
public static final ComputationService.Event CLEAN
public static final ComputationService.Event FINISHED_SUCCESSFULLY
public static final ComputationService.Event FAILED
public static final ComputationService.Event TERMINATE
public static ComputationService.Event[] values()
for (ComputationService.Event c : ComputationService.Event.values()) System.out.println(c);
public static ComputationService.Event valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null