public enum EnumAxisUnits extends java.lang.Enum<EnumAxisUnits>
| Enum Constant and Description |
|---|
BECQUERELS_PER_MILLILITER
The BECQUEREL s_ pe r_ milliliter.
|
CENTIMETERS
The CENTIMETERS.
|
CMXCM
The CMXCM.
|
COUNTS
The COUNTS.
|
COUNTS_PER_SECOND
The COUNT s_ pe r_ second.
|
DEGREES
The DEGREES.
|
GRAMS_PER_MILLILITER
The GRAM s_ pe r_ milliliter.
|
MICROMOLE_PER_MILLILITER
The MICROMOL e_ pe r_ milliliter.
|
MICROMOLE_PER_MINUTE_PER_MILLILITER
The MICROMOL e_ pe r_ minut e_ pe r_ milliliter.
|
MILLIGRAM_PER_MINUTE_PER_MILLILITER
The MILLIGRA m_ pe r_ minut e_ pe r_ milliliter.
|
MILLILITER_PER_GRAM
The MILLILITE r_ pe r_ gram.
|
MILLILITER_PER_MILLILITER
The MILLILITE r_ pe r_ milliliter.
|
MILLILITER_PER_MINUTE_PER_GRAM
The MILLILITE r_ pe r_ minut e_ pe r_ gram.
|
MILLILITER_PER_MINUTE_PER_MILLILITER
The MILLILITE r_ pe r_ minut e_ pe r_ milliliter.
|
MILLIMETERS
The MILLIMETERS.
|
MILLISECONDS
The MILLISECONDS.
|
ONE_CENTIMETER
The ON e_ centimeter.
|
PERCENT
The PERCENT.
|
PROPORTIONALTOCOUNTS
The PROPORTIONALTOCOUNTS.
|
PROPORTIONALTOCOUNTS_PER_SEC
The PROPORTIONALTOCOUNT s_ pe r_ sec.
|
SECONDS
The SECONDS.
|
STANDARD_DEVIATIONS
The STANDAR d_ deviations.
|
UNITLESS
The UNITLESS.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumAxisUnits |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAxisUnits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAxisUnits SECONDS
public static final EnumAxisUnits COUNTS
public static final EnumAxisUnits MILLIMETERS
public static final EnumAxisUnits UNITLESS
public static final EnumAxisUnits CENTIMETERS
public static final EnumAxisUnits CMXCM
public static final EnumAxisUnits DEGREES
public static final EnumAxisUnits MILLISECONDS
public static final EnumAxisUnits PERCENT
public static final EnumAxisUnits COUNTS_PER_SECOND
public static final EnumAxisUnits BECQUERELS_PER_MILLILITER
public static final EnumAxisUnits MILLIGRAM_PER_MINUTE_PER_MILLILITER
public static final EnumAxisUnits MICROMOLE_PER_MINUTE_PER_MILLILITER
public static final EnumAxisUnits MILLILITER_PER_MINUTE_PER_GRAM
public static final EnumAxisUnits MILLILITER_PER_GRAM
public static final EnumAxisUnits ONE_CENTIMETER
public static final EnumAxisUnits MICROMOLE_PER_MILLILITER
public static final EnumAxisUnits PROPORTIONALTOCOUNTS
public static final EnumAxisUnits PROPORTIONALTOCOUNTS_PER_SEC
public static final EnumAxisUnits MILLILITER_PER_MINUTE_PER_MILLILITER
public static final EnumAxisUnits MILLILITER_PER_MILLILITER
public static final EnumAxisUnits GRAMS_PER_MILLILITER
public static final EnumAxisUnits STANDARD_DEVIATIONS
public static EnumAxisUnits[] values()
for (EnumAxisUnits c : EnumAxisUnits.values()) System.out.println(c);
public static EnumAxisUnits 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()