public enum EnumCM_TractographyAnatomicSites extends java.lang.Enum<EnumCM_TractographyAnatomicSites>
| Enum Constant and Description |
|---|
CARDIAC_MUSCLE |
CEREBELLAR_WHITE_MATTER |
CEREBRAL_WHITE_MATTER |
PERILESIONAL_WHITE_MATTER |
PERIPHERAL_NERVE |
PHANTOM |
SKELETAL_MUSCLE |
SPINAL_CORD_WHITE_MATTER |
WHITE_MATTER_OF_BRAIN_AND_SPINAL_CORD |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_TractographyAnatomicSites |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_TractographyAnatomicSites[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_TractographyAnatomicSites CEREBELLAR_WHITE_MATTER
public static final EnumCM_TractographyAnatomicSites CEREBRAL_WHITE_MATTER
public static final EnumCM_TractographyAnatomicSites SPINAL_CORD_WHITE_MATTER
public static final EnumCM_TractographyAnatomicSites WHITE_MATTER_OF_BRAIN_AND_SPINAL_CORD
public static final EnumCM_TractographyAnatomicSites PERILESIONAL_WHITE_MATTER
public static final EnumCM_TractographyAnatomicSites PERIPHERAL_NERVE
public static final EnumCM_TractographyAnatomicSites SKELETAL_MUSCLE
public static final EnumCM_TractographyAnatomicSites CARDIAC_MUSCLE
public static final EnumCM_TractographyAnatomicSites PHANTOM
public static EnumCM_TractographyAnatomicSites[] values()
for (EnumCM_TractographyAnatomicSites c : EnumCM_TractographyAnatomicSites.values()) System.out.println(c);
public static EnumCM_TractographyAnatomicSites 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()