public enum EnumCM_PlaneIdentification extends java.lang.Enum<EnumCM_PlaneIdentification>
| Enum Constant and Description |
|---|
ANTERO_POSTERIOR |
CAUDAL_LAO |
CAUDAL_RAO |
CRANIAL_LAO |
CRANIAL_RAO |
LEFT_ANTERIOR_OBLIQUE |
LEFT_LATERAL |
RIGHT_ANTERIOR_OBLIQUE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_PlaneIdentification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_PlaneIdentification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_PlaneIdentification RIGHT_ANTERIOR_OBLIQUE
public static final EnumCM_PlaneIdentification LEFT_ANTERIOR_OBLIQUE
public static final EnumCM_PlaneIdentification ANTERO_POSTERIOR
public static final EnumCM_PlaneIdentification LEFT_LATERAL
public static final EnumCM_PlaneIdentification CRANIAL_LAO
public static final EnumCM_PlaneIdentification CRANIAL_RAO
public static final EnumCM_PlaneIdentification CAUDAL_LAO
public static final EnumCM_PlaneIdentification CAUDAL_RAO
public static EnumCM_PlaneIdentification[] values()
for (EnumCM_PlaneIdentification c : EnumCM_PlaneIdentification.values()) System.out.println(c);
public static EnumCM_PlaneIdentification 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()