public static enum BaseCalc.output_t extends Enum<BaseCalc.output_t>
Enum Constant and Description |
---|
CONCENTRATION |
NUMBER |
Modifier and Type | Method and Description |
---|---|
static BaseCalc.output_t |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseCalc.output_t[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseCalc.output_t NUMBER
public static final BaseCalc.output_t CONCENTRATION
public static BaseCalc.output_t[] values()
for (BaseCalc.output_t c : BaseCalc.output_t.values()) System.out.println(c);
public static BaseCalc.output_t valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.