public enum EnumCM_TransducerOrientation extends java.lang.Enum<EnumCM_TransducerOrientation>
| Enum Constant and Description |
|---|
CORONAL |
FIVE_CHAMBER |
FOUR_CHAMBER |
LONG_AXIS |
LONGITUDINAL |
OBLIQUE |
OFF_AXIS |
PARASAGITTAL |
SAGITTAL |
SHORT_AXIS |
TRANSVERSE |
TWO_CHAMBER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_TransducerOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_TransducerOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_TransducerOrientation CORONAL
public static final EnumCM_TransducerOrientation LONGITUDINAL
public static final EnumCM_TransducerOrientation SAGITTAL
public static final EnumCM_TransducerOrientation PARASAGITTAL
public static final EnumCM_TransducerOrientation OBLIQUE
public static final EnumCM_TransducerOrientation LONG_AXIS
public static final EnumCM_TransducerOrientation OFF_AXIS
public static final EnumCM_TransducerOrientation SHORT_AXIS
public static final EnumCM_TransducerOrientation FIVE_CHAMBER
public static final EnumCM_TransducerOrientation TWO_CHAMBER
public static final EnumCM_TransducerOrientation FOUR_CHAMBER
public static final EnumCM_TransducerOrientation TRANSVERSE
public static EnumCM_TransducerOrientation[] values()
for (EnumCM_TransducerOrientation c : EnumCM_TransducerOrientation.values()) System.out.println(c);
public static EnumCM_TransducerOrientation 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()