public enum EnumBrachyTreatmentType extends java.lang.Enum<EnumBrachyTreatmentType>
| Enum Constant and Description |
|---|
HIGH_DOSE_RATE
The HIGH_ DOS E_ RATE.
|
LOW_DOSE_RATE
The LOW_DOSE_RATE.
|
MANUALLY_POSITIONED
The MANUALLY_ POSITIONED.
|
MEDIUM_DOSE_RATE
The MEDIUM_ DOS E_ RATE.
|
PULSED_DOSE_RATE
The PULSED_DOSE_RATE.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumBrachyTreatmentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumBrachyTreatmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumBrachyTreatmentType MANUALLY_POSITIONED
public static final EnumBrachyTreatmentType HIGH_DOSE_RATE
public static final EnumBrachyTreatmentType MEDIUM_DOSE_RATE
public static final EnumBrachyTreatmentType LOW_DOSE_RATE
public static final EnumBrachyTreatmentType PULSED_DOSE_RATE
public static EnumBrachyTreatmentType[] values()
for (EnumBrachyTreatmentType c : EnumBrachyTreatmentType.values()) System.out.println(c);
public static EnumBrachyTreatmentType 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()