public enum EnumPDUType extends java.lang.Enum<EnumPDUType>
| Enum Constant and Description |
|---|
ABORT
byte value representing abort
|
ASSOCIATE_AC
Byte value representing Associate Acknowledgement pdu
|
ASSOCIATE_RJ
Byte value representing Associate Reject pdu
|
ASSOCIATE_RQ
Byte value representing Associate Request pdu
|
NULL
Default PDU type
|
P_DATA_TF
Byte value representing p-data-tf pdu
|
RELEASE_RP
Byte value representing Release response
|
RELEASE_RQ
Byte value representing release request
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
This function returns the byte value of this enum.
|
static EnumPDUType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPDUType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPDUType ASSOCIATE_RQ
public static final EnumPDUType ASSOCIATE_AC
public static final EnumPDUType ASSOCIATE_RJ
public static final EnumPDUType P_DATA_TF
public static final EnumPDUType RELEASE_RQ
public static final EnumPDUType RELEASE_RP
public static final EnumPDUType ABORT
public static final EnumPDUType NULL
public static EnumPDUType[] values()
for (EnumPDUType c : EnumPDUType.values()) System.out.println(c);
public static EnumPDUType 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()