public enum EnumAbortReason extends java.lang.Enum<EnumAbortReason>
| Enum Constant and Description |
|---|
INVALID_PDU_PARAM_VALUE
byte value representing reason invalid pdu
|
NOT_SPECIFIED
byte value representing reason not specified
|
UNEXPECTED_PDU
byte value representing reason unexpected pdu
|
UNEXPECTED_PDU_PARAM
byte value representing reason unexpected pdu
|
UNRECOGNIZED_PDU
byte value representing reason unrecognized pdu
|
UNRECOGNIZED_PDU_PARAM
byte value representing reason unrecognized pdu
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
This function returns the byte value of this enum.
|
static EnumAbortReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAbortReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAbortReason NOT_SPECIFIED
public static final EnumAbortReason UNRECOGNIZED_PDU
public static final EnumAbortReason UNEXPECTED_PDU
public static final EnumAbortReason UNRECOGNIZED_PDU_PARAM
public static final EnumAbortReason UNEXPECTED_PDU_PARAM
public static final EnumAbortReason INVALID_PDU_PARAM_VALUE
public static EnumAbortReason[] values()
for (EnumAbortReason c : EnumAbortReason.values()) System.out.println(c);
public static EnumAbortReason 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 byte getValue()