public enum EnumCM_PeripheralPulseLocations extends java.lang.Enum<EnumCM_PeripheralPulseLocations>
| Enum Constant and Description |
|---|
BRACHIAL_ARTERY |
CAROTID_ARTERY |
DORSALIS_PEDIS_ARTERY |
FEMORAL_ARTERY |
POPLITEAL_ARTERY |
POSTERIOR_TIBIAL_ARTERY |
RADIAL_ARTERY |
ULNAR_ARTERY |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_PeripheralPulseLocations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_PeripheralPulseLocations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_PeripheralPulseLocations BRACHIAL_ARTERY
public static final EnumCM_PeripheralPulseLocations CAROTID_ARTERY
public static final EnumCM_PeripheralPulseLocations DORSALIS_PEDIS_ARTERY
public static final EnumCM_PeripheralPulseLocations FEMORAL_ARTERY
public static final EnumCM_PeripheralPulseLocations POPLITEAL_ARTERY
public static final EnumCM_PeripheralPulseLocations POSTERIOR_TIBIAL_ARTERY
public static final EnumCM_PeripheralPulseLocations RADIAL_ARTERY
public static final EnumCM_PeripheralPulseLocations ULNAR_ARTERY
public static EnumCM_PeripheralPulseLocations[] values()
for (EnumCM_PeripheralPulseLocations c : EnumCM_PeripheralPulseLocations.values()) System.out.println(c);
public static EnumCM_PeripheralPulseLocations 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()