public enum EnumAcknowledgmentCode extends java.lang.Enum<EnumAcknowledgmentCode>
| Enum Constant and Description |
|---|
APPLICATION_ACCEPT
Enum Code for Application Accept.
|
APPLICATION_ERROR
Enum Code for Application Error
|
APPLICATION_REJECT
Enum code for Application Reject
|
COMMIT_ACCEPT
Enum code for Commit Accept
|
COMMIT_ERROR
Enum code Commit Error
|
COMMIT_REJECT
Enum code Commit Reject
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumAcknowledgmentCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAcknowledgmentCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAcknowledgmentCode APPLICATION_ACCEPT
public static final EnumAcknowledgmentCode APPLICATION_ERROR
public static final EnumAcknowledgmentCode APPLICATION_REJECT
public static final EnumAcknowledgmentCode COMMIT_ACCEPT
public static final EnumAcknowledgmentCode COMMIT_ERROR
public static final EnumAcknowledgmentCode COMMIT_REJECT
public static EnumAcknowledgmentCode[] values()
for (EnumAcknowledgmentCode c : EnumAcknowledgmentCode.values()) System.out.println(c);
public static EnumAcknowledgmentCode 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 java.lang.String getValue()