public static enum WorkflowAction.Status extends Enum<WorkflowAction.Status>
Enum Constant and Description |
---|
DONE |
END_MANUAL |
END_RETRY |
ERROR |
FAILED |
KILLED |
OK |
PREP |
RUNNING |
START_MANUAL |
START_RETRY |
USER_RETRY |
Modifier and Type | Method and Description |
---|---|
static WorkflowAction.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkflowAction.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkflowAction.Status PREP
public static final WorkflowAction.Status RUNNING
public static final WorkflowAction.Status OK
public static final WorkflowAction.Status ERROR
public static final WorkflowAction.Status USER_RETRY
public static final WorkflowAction.Status START_RETRY
public static final WorkflowAction.Status START_MANUAL
public static final WorkflowAction.Status DONE
public static final WorkflowAction.Status END_RETRY
public static final WorkflowAction.Status END_MANUAL
public static final WorkflowAction.Status KILLED
public static final WorkflowAction.Status FAILED
public static WorkflowAction.Status[] values()
for (WorkflowAction.Status c : WorkflowAction.Status.values()) System.out.println(c);
public static WorkflowAction.Status 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 © 2018 Apache Software Foundation. All rights reserved.