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