public enum pool_state_t extends Enum<pool_state_t>
| Enum Constant and Description |
|---|
POOL_STATE_ACTIVE |
POOL_STATE_DESTROYED |
POOL_STATE_EXPORTED |
POOL_STATE_IO_FAILURE |
POOL_STATE_L2CACHE |
POOL_STATE_POTENTIALLY_ACTIVE |
POOL_STATE_SPARE |
POOL_STATE_UNAVAIL |
POOL_STATE_UNINITIALIZED |
| Modifier and Type | Method and Description |
|---|---|
static pool_state_t |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static pool_state_t[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final pool_state_t POOL_STATE_ACTIVE
public static final pool_state_t POOL_STATE_EXPORTED
public static final pool_state_t POOL_STATE_DESTROYED
public static final pool_state_t POOL_STATE_SPARE
public static final pool_state_t POOL_STATE_L2CACHE
public static final pool_state_t POOL_STATE_UNINITIALIZED
public static final pool_state_t POOL_STATE_IO_FAILURE
public static final pool_state_t POOL_STATE_UNAVAIL
public static final pool_state_t POOL_STATE_POTENTIALLY_ACTIVE
public static pool_state_t[] values()
for (pool_state_t c : pool_state_t.values()) System.out.println(c);
public static pool_state_t 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 © 2008–2017. All rights reserved.