public enum EnumCM_FetalCraniumAnatomicSites extends java.lang.Enum<EnumCM_FetalCraniumAnatomicSites>
| Enum Constant and Description |
|---|
ANTERIOR_HORN_LATERAL_VENTRICLE |
CEREBELLUM |
CEREBRAL_HEMISPHERE |
CISTERNA_MAGNA |
LATERAL_VENTRICLE |
NUCHAL_REGION_OF_SCALP |
ORBIT |
POSTERIOR_HORN_LATERAL_VENTRICLE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_FetalCraniumAnatomicSites |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_FetalCraniumAnatomicSites[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_FetalCraniumAnatomicSites ANTERIOR_HORN_LATERAL_VENTRICLE
public static final EnumCM_FetalCraniumAnatomicSites CEREBELLUM
public static final EnumCM_FetalCraniumAnatomicSites CEREBRAL_HEMISPHERE
public static final EnumCM_FetalCraniumAnatomicSites CISTERNA_MAGNA
public static final EnumCM_FetalCraniumAnatomicSites LATERAL_VENTRICLE
public static final EnumCM_FetalCraniumAnatomicSites NUCHAL_REGION_OF_SCALP
public static final EnumCM_FetalCraniumAnatomicSites ORBIT
public static final EnumCM_FetalCraniumAnatomicSites POSTERIOR_HORN_LATERAL_VENTRICLE
public static EnumCM_FetalCraniumAnatomicSites[] values()
for (EnumCM_FetalCraniumAnatomicSites c : EnumCM_FetalCraniumAnatomicSites.values()) System.out.println(c);
public static EnumCM_FetalCraniumAnatomicSites 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()