public static enum Chiller.Life extends Enum<Chiller.Life>
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static Chiller.Life |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Chiller.Life[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Chiller.Life CONTROL
public static final Chiller.Life COMPRESS
public static final Chiller.Life PUMP
public static final Chiller.Life VALVE
public static Chiller.Life[] values()
for (Chiller.Life c : Chiller.Life.values()) System.out.println(c);
public static Chiller.Life 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 nullpublic String getDescription()
Copyright © 2022 LSST. All rights reserved.