public enum EnumACKReason extends java.lang.Enum<EnumACKReason>
| Enum Constant and Description |
|---|
ABSTRACT_SYNTAX_NOT_SUPPORTED
byte value representing reason abstract syntax not supported
|
ACCEPTANCE
byte value representing reason acceptance
|
NO_REASON
byte value representing reason no reason
|
TRANSFER_SYNTAX_NOT_SUPPORTED
byte value representing reason transfer syntax not supported
|
USER_REJECTION
byte value representing reason user rejection
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
This function returns the byte value of this enum.
|
static EnumACKReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumACKReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumACKReason ACCEPTANCE
public static final EnumACKReason USER_REJECTION
public static final EnumACKReason NO_REASON
public static final EnumACKReason ABSTRACT_SYNTAX_NOT_SUPPORTED
public static final EnumACKReason TRANSFER_SYNTAX_NOT_SUPPORTED
public static EnumACKReason[] values()
for (EnumACKReason c : EnumACKReason.values()) System.out.println(c);
public static EnumACKReason 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()