public enum YmsOperationExecutionStatus extends Enum<YmsOperationExecutionStatus>
| Enum Constant and Description |
|---|
ERROR_EXCEPTION
Error in execution of the operation.
|
EXECUTION_EXCEPTION
Exception in execution of the operation.
|
EXECUTION_SUCCESS
Successful execution of the operation.
|
| Modifier and Type | Method and Description |
|---|---|
static YmsOperationExecutionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YmsOperationExecutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YmsOperationExecutionStatus EXECUTION_SUCCESS
public static final YmsOperationExecutionStatus EXECUTION_EXCEPTION
public static final YmsOperationExecutionStatus ERROR_EXCEPTION
public static YmsOperationExecutionStatus[] values()
for (YmsOperationExecutionStatus c : YmsOperationExecutionStatus.values()) System.out.println(c);
public static YmsOperationExecutionStatus 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 null