public enum ErrorCodes extends Enum<ErrorCodes>
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getDescription() |
String |
toString() |
static ErrorCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCodes MISSING_ITEM_PROVIDER
public static final ErrorCodes ILLEGAL_TYPE_CASTING
public static final ErrorCodes INVOKE_PERSISTED_ENTITY_METHOD_ERROR
public static final ErrorCodes NOT_ALLOW_ACCESS_FIELD
public static final ErrorCodes FIELD_NOT_FOUND
public static final ErrorCodes NOT_ALLOW_ACCESS_METHOD
public static final ErrorCodes METHOD_NOT_FOUND
public static final ErrorCodes CONSTRUCT_NEW_INSTANCE_ERROR
public static final ErrorCodes CANNOT_GET_FIELD_VALUE
public static final ErrorCodes CANNOT_SET_FIELD_VALUE
public static final ErrorCodes METHOD_NULL
public static final ErrorCodes FIELD_NULL
public static final ErrorCodes METHOD_INVOKE_ERROR
public static final ErrorCodes CONSTRUCTOR_NOT_FOUND
public static final ErrorCodes ILLEGAL_CLASS_NAME
public static final ErrorCodes CLASS_NOT_FOUND
public static final ErrorCodes METHOD_UNEXPECTED_PARAMETERS
public static final ErrorCodes FSM_TRANSITION_ERROR
public static final ErrorCodes INTERNAL_ERROR
public static final ErrorCodes UNEXPECTED_ERROR
public static ErrorCodes[] values()
for (ErrorCodes c : ErrorCodes.values()) System.out.println(c);
public static ErrorCodes 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 nullpublic String getDescription()
public int getCode()
public String toString()
toString in class Enum<ErrorCodes>Copyright © 2013–2016. All rights reserved.