public enum EnumRejectReason extends java.lang.Enum<EnumRejectReason>
| Enum Constant and Description |
|---|
APPLICATION_CONTEXT_NOT_SUPPORTED
byte value representing rejection reason as application context not supported
|
CALLED_AE_TITLE_NOT_RECOGNIZED
byte value representing rejection reason as calling AE title not recognized
|
CALLING_AE_TITLE_NOT_RECOGNIZED
byte value representing rejection reason as called AE title not recognized
|
NO_REASON
byte value representing rejection reason as no reason
|
SP_ACSE_PROTOCOL_VERSION_NOT_SUPPORTED
byte value representing rejection reason as protocol version not supported
|
SP_PRESENTATION_LIMIT_EXCEEDED
byte value representing rejection reason as presentation limit exceeded
|
SP_PRESENTATION_TEMP_CONGESTION
byte value representing rejection reason as presentation congestion
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
This function returns the byte value of this enum.
|
static EnumRejectReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumRejectReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumRejectReason NO_REASON
public static final EnumRejectReason APPLICATION_CONTEXT_NOT_SUPPORTED
public static final EnumRejectReason SP_ACSE_PROTOCOL_VERSION_NOT_SUPPORTED
public static final EnumRejectReason SP_PRESENTATION_TEMP_CONGESTION
public static final EnumRejectReason SP_PRESENTATION_LIMIT_EXCEEDED
public static final EnumRejectReason CALLING_AE_TITLE_NOT_RECOGNIZED
public static final EnumRejectReason CALLED_AE_TITLE_NOT_RECOGNIZED
public static EnumRejectReason[] values()
for (EnumRejectReason c : EnumRejectReason.values()) System.out.println(c);
public static EnumRejectReason 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()