public static enum ProcessStatus.Type extends Enum<ProcessStatus.Type>
| Enum Constant and Description |
|---|
CANCELED_BY_USER |
HAS_NEVER_RUN |
LAST_RUN_FATAL_ERROR |
LAST_RUN_OK |
LAST_RUN_OK_WITH_ERRORS |
RUNNING |
| Modifier and Type | Method and Description |
|---|---|
static ProcessStatus.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessStatus.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessStatus.Type HAS_NEVER_RUN
public static final ProcessStatus.Type RUNNING
public static final ProcessStatus.Type LAST_RUN_OK
public static final ProcessStatus.Type LAST_RUN_OK_WITH_ERRORS
public static final ProcessStatus.Type LAST_RUN_FATAL_ERROR
public static final ProcessStatus.Type CANCELED_BY_USER
public static ProcessStatus.Type[] values()
for (ProcessStatus.Type c : ProcessStatus.Type.values()) System.out.println(c);
public static ProcessStatus.Type 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 © 2015. All rights reserved.