public static enum TypeSystemSetup.StartupStatus extends Enum<TypeSystemSetup.StartupStatus>
| Enum Constant and Description |
|---|
FAILED |
NOT_STARTED |
STARTED |
| Modifier and Type | Method and Description |
|---|---|
static TypeSystemSetup.StartupStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeSystemSetup.StartupStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeSystemSetup.StartupStatus NOT_STARTED
public static final TypeSystemSetup.StartupStatus STARTED
public static final TypeSystemSetup.StartupStatus FAILED
public static TypeSystemSetup.StartupStatus[] values()
for (TypeSystemSetup.StartupStatus c : TypeSystemSetup.StartupStatus.values()) System.out.println(c);
public static TypeSystemSetup.StartupStatus 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. All rights reserved.