public enum EMDKErrorCode extends java.lang.Enum<EMDKErrorCode>
Example Usage: EMDKErrorCode.UNLICENSED_FEATURE
Enum Constant and Description |
---|
UNDEFINED
Undefined
|
UNLICENSED_FEATURE
Unlicensed feature
|
UNSUPPORTED_FEATURE
Unsupported feature
|
Modifier and Type | Method and Description |
---|---|
static EMDKErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EMDKErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EMDKErrorCode UNDEFINED
public static final EMDKErrorCode UNSUPPORTED_FEATURE
public static final EMDKErrorCode UNLICENSED_FEATURE
public static EMDKErrorCode[] values()
for (EMDKErrorCode c : EMDKErrorCode.values()) System.out.println(c);
public static EMDKErrorCode 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