public enum EnumCM_DeviceParticipant extends java.lang.Enum<EnumCM_DeviceParticipant>
| Enum Constant and Description |
|---|
DEVICE_MANUFACTURE |
DEVICE_MODEL_NAME |
DEVICE_NAME |
DEVICE_OBSERVER_UID |
DEVICE_ROLE_IN_PROCEDURE |
DEVICE_SERIAL_NUMBER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_DeviceParticipant |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_DeviceParticipant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_DeviceParticipant DEVICE_ROLE_IN_PROCEDURE
public static final EnumCM_DeviceParticipant DEVICE_NAME
public static final EnumCM_DeviceParticipant DEVICE_MANUFACTURE
public static final EnumCM_DeviceParticipant DEVICE_MODEL_NAME
public static final EnumCM_DeviceParticipant DEVICE_SERIAL_NUMBER
public static final EnumCM_DeviceParticipant DEVICE_OBSERVER_UID
public static EnumCM_DeviceParticipant[] values()
for (EnumCM_DeviceParticipant c : EnumCM_DeviceParticipant.values()) System.out.println(c);
public static EnumCM_DeviceParticipant 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 java.lang.String getValue()