
public enum Phase extends Enum<Phase>
| Enum Constant and Description |
|---|
CLOSING |
INITIALIZING
subsystem starting
|
OFF_LINE
can't accept anything
|
OPERATIONAL
fully operational
|
| Modifier and Type | Method and Description |
|---|---|
static Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Phase INITIALIZING
public static final Phase OPERATIONAL
public static final Phase CLOSING
public static final Phase OFF_LINE
public static Phase[] values()
for (Phase c : Phase.values()) System.out.println(c);
public static Phase 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 © 2015 LSST. All rights reserved.