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