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