public enum PoolState extends Enum<PoolState>
| Enum Constant and Description |
|---|
ACTIVE
Enum value active.
|
DELETING
Enum value deleting.
|
UPGRADING
Enum value upgrading.
|
| Modifier and Type | Method and Description |
|---|---|
static PoolState |
fromString(String value)
Parses a serialized value to a PoolState instance.
|
String |
toString() |
static PoolState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PoolState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PoolState ACTIVE
public static final PoolState DELETING
public static final PoolState UPGRADING
public static PoolState[] values()
for (PoolState c : PoolState.values()) System.out.println(c);
public static PoolState 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 nullpublic static PoolState fromString(String value)
value - the serialized value to parse.Copyright © 2019. All rights reserved.