public enum ActionStatus extends Enum<ActionStatus>
| Enum Constant and Description |
|---|
ASSIGNED
The job/action is assigned but not jet taken into started execution.
|
DONE
The job/action is completed successfully.
|
FAILED
The job/action is completed with failure.
|
ONGOING
The job/action is ongoing.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionStatus ASSIGNED
public static final ActionStatus ONGOING
public static final ActionStatus DONE
public static final ActionStatus FAILED
public static ActionStatus[] values()
for (ActionStatus c : ActionStatus.values()) System.out.println(c);
public static ActionStatus 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 © 2019. All rights reserved.