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