public enum EnumCM_CatheterizationDevices extends java.lang.Enum<EnumCM_CatheterizationDevices>
| Enum Constant and Description |
|---|
BIOPTOME |
FIBEROPTIC_CATHETER |
FLUID_FILLED_CATHETER |
HALL_CATHETER |
INTRA_AORTIC_BALLOON_PUMP_IABP |
SHEATH |
SWANN_GANZ_CATHETER |
THERMISTOR_CATHETER |
TIP_MANOMETER |
TRANSSEPTAL_CATHETER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_CatheterizationDevices |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_CatheterizationDevices[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_CatheterizationDevices INTRA_AORTIC_BALLOON_PUMP_IABP
public static final EnumCM_CatheterizationDevices FLUID_FILLED_CATHETER
public static final EnumCM_CatheterizationDevices FIBEROPTIC_CATHETER
public static final EnumCM_CatheterizationDevices HALL_CATHETER
public static final EnumCM_CatheterizationDevices THERMISTOR_CATHETER
public static final EnumCM_CatheterizationDevices TIP_MANOMETER
public static final EnumCM_CatheterizationDevices SWANN_GANZ_CATHETER
public static final EnumCM_CatheterizationDevices SHEATH
public static final EnumCM_CatheterizationDevices TRANSSEPTAL_CATHETER
public static final EnumCM_CatheterizationDevices BIOPTOME
public static EnumCM_CatheterizationDevices[] values()
for (EnumCM_CatheterizationDevices c : EnumCM_CatheterizationDevices.values()) System.out.println(c);
public static EnumCM_CatheterizationDevices 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()