public static enum IOState.Type extends Enum<IOState.Type>
| Enum Constant and Description |
|---|
CREATED |
FAILED |
INITIALIZED |
INVALID_CONFIGURATION |
RUNNING |
STARTING |
STOPPED |
STOPPING |
TERMINATED |
| Modifier and Type | Method and Description |
|---|---|
static IOState.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IOState.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOState.Type CREATED
public static final IOState.Type INITIALIZED
public static final IOState.Type INVALID_CONFIGURATION
public static final IOState.Type STARTING
public static final IOState.Type RUNNING
public static final IOState.Type FAILED
public static final IOState.Type STOPPING
public static final IOState.Type STOPPED
public static final IOState.Type TERMINATED
public static IOState.Type[] values()
for (IOState.Type c : IOState.Type.values()) System.out.println(c);
public static IOState.Type 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 © 2012-2016 Graylog, Inc.. All Rights Reserved.