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