public enum EnumCommandField extends java.lang.Enum<EnumCommandField>
| Enum Constant and Description |
|---|
C_CANCEL_RQ
Byte value repesenting C-Cancel Request
|
C_ECHO_RQ
Byte value repesenting C-Echo Request
|
C_ECHO_RSP
Byte value repesenting C-Echo Response
|
C_FIND_RQ
Byte value repesenting C-Find Request
|
C_FIND_RSP
Byte value repesenting C-Find Response
|
C_GET_RQ
Byte value repesenting C-Get Request
|
C_GET_RSP
Byte value repesenting C-Get Response
|
C_MOVE_RQ
Byte value repesenting C-Move Request
|
C_MOVE_RSP
Byte value repesenting C-Move Response
|
C_STORE_RQ
Byte value repesenting C-Store Request
|
C_STORE_RSP
Byte value repesenting C-Store Response
|
N_ACTION_RQ
Byte value repesenting N-Action Request
|
N_ACTION_RSP
Byte value repesenting N-Action Response
|
N_CREATE_RQ
Byte value repesenting N-Create Request
|
N_CREATE_RSP
Byte value repesenting N-Create Response
|
N_DELETE_RQ
Byte value repesenting N-Delete Request
|
N_DELETE_RSP
Byte value repesenting N-Delete Response
|
N_EVENT_REPORT_RQ
Byte value repesenting N-Event Report Request
|
N_EVENT_REPORT_RSP
Byte value repesenting N-Event Report Response
|
N_GET_RQ
Byte value repesenting N-Get Request
|
N_GET_RSP
Byte value repesenting N-Get Response
|
N_SET_RQ
Byte value repesenting N-Set Request
|
N_SET_RSP
Byte value repesenting N-Set Response
|
| Modifier and Type | Method and Description |
|---|---|
short |
getValue()
This function returns the short value of this enum.
|
static EnumCommandField |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCommandField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCommandField C_STORE_RQ
public static final EnumCommandField C_STORE_RSP
public static final EnumCommandField C_GET_RQ
public static final EnumCommandField C_GET_RSP
public static final EnumCommandField C_FIND_RQ
public static final EnumCommandField C_FIND_RSP
public static final EnumCommandField C_MOVE_RQ
public static final EnumCommandField C_MOVE_RSP
public static final EnumCommandField C_ECHO_RQ
public static final EnumCommandField C_ECHO_RSP
public static final EnumCommandField N_EVENT_REPORT_RQ
public static final EnumCommandField N_EVENT_REPORT_RSP
public static final EnumCommandField N_GET_RQ
public static final EnumCommandField N_GET_RSP
public static final EnumCommandField N_SET_RQ
public static final EnumCommandField N_SET_RSP
public static final EnumCommandField N_ACTION_RQ
public static final EnumCommandField N_ACTION_RSP
public static final EnumCommandField N_CREATE_RQ
public static final EnumCommandField N_CREATE_RSP
public static final EnumCommandField N_DELETE_RQ
public static final EnumCommandField N_DELETE_RSP
public static final EnumCommandField C_CANCEL_RQ
public static EnumCommandField[] values()
for (EnumCommandField c : EnumCommandField.values()) System.out.println(c);
public static EnumCommandField 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 short getValue()