public static enum Config.State extends Enum<Config.State>
| Enum Constant and Description |
|---|
BOOTSTRAP |
INITIALIZED |
PREBOOTSTRAP |
| Modifier and Type | Method and Description |
|---|---|
static Config.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Config.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Config.State PREBOOTSTRAP
public static final Config.State BOOTSTRAP
public static final Config.State INITIALIZED
public static Config.State[] values()
for (Config.State c : Config.State.values()) System.out.println(c);
public static Config.State 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 N5 Technologies, Inc. All Rights Reserved.