public enum EnumItemType extends java.lang.Enum<EnumItemType>
| Enum Constant and Description |
|---|
AC_PRESENTATION_CONTEXT_ITEM
byte value representing AC Presentation Context Item
|
APPLICATION_CONTEXT_ITEM
byte value representing Application Context Item
|
RQ_ABSTRACT_SYNTAX_ITEM
byte value representing RQ Abstract Syntax Item
|
RQ_PRESENTATION_CONTEXT_ITEM
byte value representing RQ Presentation Context Item
|
SOP_CLASS_COMMON_EXTENDED_NEGOTIATION_ITEM
byte value representing SOP Class Common Extended Negotiation Item
|
SOP_CLASS_EXTENDED_NEGOTIATION_ITEM
byte value representing SOP Class Extended Negotiation Item
|
TRANSFER_SYNTAX_ITEM
byte value representing Transfer Syntax Item
|
USER_INFO_ASYNC_OPS_WINDOW_ITEM
byte value representing user info async operation window Item
|
USER_INFO_IMPL_CLASS_UID_ITEM
byte value representing user info implementation class UID Item
|
USER_INFO_IMPL_VERSION_NAME_ITEM
byte value representing user info implementation Version Name Item
|
USER_INFO_MAX_LENGTH_ITEM
byte value representing user info max length Item
|
USER_INFO_SCU_SCP_ROLE_SELECTION_ITEM
byte value representing user info SCU/SCP role selection Item
|
USER_INFORMATION_ITEM
byte value representing user information Item
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
This function returns the byte value of this enum.
|
static EnumItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumItemType RQ_PRESENTATION_CONTEXT_ITEM
public static final EnumItemType AC_PRESENTATION_CONTEXT_ITEM
public static final EnumItemType APPLICATION_CONTEXT_ITEM
public static final EnumItemType RQ_ABSTRACT_SYNTAX_ITEM
public static final EnumItemType TRANSFER_SYNTAX_ITEM
public static final EnumItemType USER_INFORMATION_ITEM
public static final EnumItemType USER_INFO_MAX_LENGTH_ITEM
public static final EnumItemType USER_INFO_IMPL_CLASS_UID_ITEM
public static final EnumItemType USER_INFO_IMPL_VERSION_NAME_ITEM
public static final EnumItemType USER_INFO_ASYNC_OPS_WINDOW_ITEM
public static final EnumItemType USER_INFO_SCU_SCP_ROLE_SELECTION_ITEM
public static final EnumItemType SOP_CLASS_EXTENDED_NEGOTIATION_ITEM
public static final EnumItemType SOP_CLASS_COMMON_EXTENDED_NEGOTIATION_ITEM
public static EnumItemType[] values()
for (EnumItemType c : EnumItemType.values()) System.out.println(c);
public static EnumItemType 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()