public enum EnumCM_DeviceSegmentationTypes extends java.lang.Enum<EnumCM_DeviceSegmentationTypes>
| Enum Constant and Description |
|---|
BONE_PIN |
BONE_SCREW |
CARDIAC_PACEMAKER |
DEFIBRILLATOR |
DENTAL_PROSTHESIS |
INLAY_DENTAL_RESTORATION |
LEFT_VENTRICULAR_ASSIST_DEVICE |
NEEDLE |
RADIOACTIVE_IMPLANT |
STENT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_DeviceSegmentationTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_DeviceSegmentationTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_DeviceSegmentationTypes BONE_PIN
public static final EnumCM_DeviceSegmentationTypes BONE_SCREW
public static final EnumCM_DeviceSegmentationTypes CARDIAC_PACEMAKER
public static final EnumCM_DeviceSegmentationTypes DEFIBRILLATOR
public static final EnumCM_DeviceSegmentationTypes DENTAL_PROSTHESIS
public static final EnumCM_DeviceSegmentationTypes INLAY_DENTAL_RESTORATION
public static final EnumCM_DeviceSegmentationTypes LEFT_VENTRICULAR_ASSIST_DEVICE
public static final EnumCM_DeviceSegmentationTypes NEEDLE
public static final EnumCM_DeviceSegmentationTypes RADIOACTIVE_IMPLANT
public static final EnumCM_DeviceSegmentationTypes STENT
public static EnumCM_DeviceSegmentationTypes[] values()
for (EnumCM_DeviceSegmentationTypes c : EnumCM_DeviceSegmentationTypes.values()) System.out.println(c);
public static EnumCM_DeviceSegmentationTypes 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()