public enum MIExecutionResult extends java.lang.Enum<MIExecutionResult>
| Enum Constant and Description |
|---|
ER_Cancelled
An operation is terminated by callback
|
ER_InvalidArgument
One or more arguments are invalid
|
ER_NotLicensed
Unacceptable license information is used or this functionality is not available under the license
|
ER_OK
An operation is completed successfully
|
ER_OutOfMemory
Not enough memory to perform the operation
|
ER_UnknownError
Operation is failed by unknown reason
|
| Modifier and Type | Field and Description |
|---|---|
int |
value
Enumeration value
|
| Modifier and Type | Method and Description |
|---|---|
static MIExecutionResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MIExecutionResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MIExecutionResult ER_OK
public static final MIExecutionResult ER_Cancelled
public static final MIExecutionResult ER_NotLicensed
public static final MIExecutionResult ER_OutOfMemory
public static final MIExecutionResult ER_InvalidArgument
public static final MIExecutionResult ER_UnknownError
public static MIExecutionResult[] values()
for (MIExecutionResult c : MIExecutionResult.values()) System.out.println(c);
public static MIExecutionResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null