public static enum RestOperationStatusMessage.StatusType extends Enum<RestOperationStatusMessage.StatusType>
| Enum Constant and Description |
|---|
COMPLETE |
ERROR |
NONE |
RUNNING |
STARTED |
| Modifier and Type | Method and Description |
|---|---|
static RestOperationStatusMessage.StatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestOperationStatusMessage.StatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestOperationStatusMessage.StatusType NONE
public static final RestOperationStatusMessage.StatusType STARTED
public static final RestOperationStatusMessage.StatusType RUNNING
public static final RestOperationStatusMessage.StatusType COMPLETE
public static final RestOperationStatusMessage.StatusType ERROR
public static RestOperationStatusMessage.StatusType[] values()
for (RestOperationStatusMessage.StatusType c : RestOperationStatusMessage.StatusType.values()) System.out.println(c);
public static RestOperationStatusMessage.StatusType 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 © 2013–2020. All rights reserved.