public enum EnumReleaseReason extends java.lang.Enum<EnumReleaseReason>
| Enum Constant and Description |
|---|
RJ_APPLICATION_CONTEXT_NOT_SUPPORTED
Release Reason application context not supported
|
RJ_CALLED_AE_TITLE_NOT_RECOGNIZED
Release Reason called AE Title not recognized
|
RJ_CALLING_AE_TITLE_NOT_RECOGNIZED
Release Reason calling AE Title not recognized
|
RJ_NO_REASON
Release Reason no reason
|
RJ_SP_ACSE_PROTOCOL_VERSION_NOT_SUPPORTED
Release Reason Protocol version not supported
|
RJ_SP_PRESENTATION_LIMIT_EXCEEDED
Release Reason Presentation limit exceeded
|
RJ_SP_PRESENTATION_TEMP_CONGESTION
Release Reason Presentation congestion
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
This function returns the byte value of this enum.
|
static EnumReleaseReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumReleaseReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumReleaseReason RJ_NO_REASON
public static final EnumReleaseReason RJ_APPLICATION_CONTEXT_NOT_SUPPORTED
public static final EnumReleaseReason RJ_SP_ACSE_PROTOCOL_VERSION_NOT_SUPPORTED
public static final EnumReleaseReason RJ_SP_PRESENTATION_TEMP_CONGESTION
public static final EnumReleaseReason RJ_SP_PRESENTATION_LIMIT_EXCEEDED
public static final EnumReleaseReason RJ_CALLING_AE_TITLE_NOT_RECOGNIZED
public static final EnumReleaseReason RJ_CALLED_AE_TITLE_NOT_RECOGNIZED
public static EnumReleaseReason[] values()
for (EnumReleaseReason c : EnumReleaseReason.values()) System.out.println(c);
public static EnumReleaseReason 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()