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