public enum ActionStatus extends Enum<ActionStatus>
Action
.Enum Constant and Description |
---|
CANCELED
The action is completed unsuccessfully.
|
NOT_READY
The action isn't completed yet.
|
READY
The action is completed successfully.
|
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 READY
public static final ActionStatus NOT_READY
public static final ActionStatus CANCELED
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 © 2021 JBoss by Red Hat. All rights reserved.