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