| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_EV |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_EV[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_EV FRAME_TO_FRAME_ANALYSIS
public static final EnumCM_EV CENTERLINE_WALL_MOTION_ANALYSIS
public static final EnumCM_EV RADIAL_BASED_WALL_MOTION_ANALYSIS
public static final EnumCM_EV LANDMARK_BASED_WALL_MOTION_ANALYSIS
public static final EnumCM_EV ARTERIAL_DISSECTION
public static final EnumCM_EV RESTENOTIC_LESSION
public static final EnumCM_EV LARGE_V_WAVE
public static final EnumCM_EV DIASTOLIC_PRESSURE_EQUALIZATION
public static final EnumCM_EV VENTRICULAR_SEPTAL_DEFECT
public static final EnumCM_EV FAMILY_HISTORY_OF
public static EnumCM_EV[] values()
for (EnumCM_EV c : EnumCM_EV.values()) System.out.println(c);
public static EnumCM_EV 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()