public static enum Model9XX.Gas extends Enum<Model9XX.Gas>
| Enum Constant and Description |
|---|
AIR |
ARGON |
CO2 |
H2O |
HELIUM |
HYDROGEN |
NEON |
NITROGEN |
XENON |
| Modifier and Type | Method and Description |
|---|---|
static Model9XX.Gas |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Model9XX.Gas[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Model9XX.Gas NITROGEN
public static final Model9XX.Gas AIR
public static final Model9XX.Gas ARGON
public static final Model9XX.Gas HELIUM
public static final Model9XX.Gas HYDROGEN
public static final Model9XX.Gas H2O
public static final Model9XX.Gas NEON
public static final Model9XX.Gas CO2
public static final Model9XX.Gas XENON
public static Model9XX.Gas[] values()
for (Model9XX.Gas c : Model9XX.Gas.values()) System.out.println(c);
public static Model9XX.Gas 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 © 2019 LSST. All rights reserved.