public enum EnumCM_InstrumentApproach extends java.lang.Enum<EnumCM_InstrumentApproach>
| Enum Constant and Description |
|---|
INFERIOR |
INFEROLATERAL_TO_SUPEROMEDIAL |
INFEROMEDIAL_TO_SUPEROLATERAL |
LATERAL |
MEDIAL |
SUPERIOR |
SUPEROLATERAL_TO_INFEROMEDIAL |
SUPEROMEDIAL_TO_INFEROLATERAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_InstrumentApproach |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_InstrumentApproach[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_InstrumentApproach MEDIAL
public static final EnumCM_InstrumentApproach LATERAL
public static final EnumCM_InstrumentApproach SUPERIOR
public static final EnumCM_InstrumentApproach INFERIOR
public static final EnumCM_InstrumentApproach INFEROLATERAL_TO_SUPEROMEDIAL
public static final EnumCM_InstrumentApproach INFEROMEDIAL_TO_SUPEROLATERAL
public static final EnumCM_InstrumentApproach SUPEROLATERAL_TO_INFEROMEDIAL
public static final EnumCM_InstrumentApproach SUPEROMEDIAL_TO_INFEROLATERAL
public static EnumCM_InstrumentApproach[] values()
for (EnumCM_InstrumentApproach c : EnumCM_InstrumentApproach.values()) System.out.println(c);
public static EnumCM_InstrumentApproach 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()