public enum EnumErrorCode extends java.lang.Enum<EnumErrorCode>
| Enum Constant and Description |
|---|
APPLICATION_ERROR
Application Error
|
DATA_TYPE_ERROR
Data type error
|
MESSAGE_ACCEPTED
Enum code for Message Accepted
|
REQUIRED_FIELD_MISSING
Required field missing
|
SEGMENT_SEQUENCE_ERROR
Enum Code for Segment sequence error
|
TABLE_VALUE_NOT_FOUND
Table value not found
|
UNSUPPORTED_EVENT_CODE
Unsupported event code
|
UNSUPPORTED_MESSAGE_TYPE
Unsupported message type
|
UNSUPPORTED_PROCESSING_ID
Unsupported processing id
|
UNSUPPORTED_VERSION_ID
Unsupported version id
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Returns the String value of this enum.
|
static EnumErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumErrorCode MESSAGE_ACCEPTED
public static final EnumErrorCode SEGMENT_SEQUENCE_ERROR
public static final EnumErrorCode REQUIRED_FIELD_MISSING
public static final EnumErrorCode DATA_TYPE_ERROR
public static final EnumErrorCode TABLE_VALUE_NOT_FOUND
public static final EnumErrorCode UNSUPPORTED_MESSAGE_TYPE
public static final EnumErrorCode UNSUPPORTED_EVENT_CODE
public static final EnumErrorCode UNSUPPORTED_PROCESSING_ID
public static final EnumErrorCode UNSUPPORTED_VERSION_ID
public static final EnumErrorCode APPLICATION_ERROR
public static EnumErrorCode[] values()
for (EnumErrorCode c : EnumErrorCode.values()) System.out.println(c);
public static EnumErrorCode 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 nullpublic int getValue()