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