public enum Minion extends Enum<Minion>
| Enum Constant and Description |
|---|
FILTER |
POWER |
RAFTS |
REFRIG |
SHUTTER |
VACUUM |
| Modifier and Type | Method and Description |
|---|---|
static Minion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Minion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Minion RAFTS
public static final Minion FILTER
public static final Minion SHUTTER
public static final Minion POWER
public static final Minion REFRIG
public static final Minion VACUUM
public static Minion[] values()
for (Minion c : Minion.values()) System.out.println(c);
public static Minion 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 © 2016 LSST. All rights reserved.