static enum Pipe.State extends java.lang.Enum<Pipe.State>
| Enum Constant and Description |
|---|
ACTIVE |
DELIMITED |
DOUBLE_TERMINATED |
PENDING |
TERMINATED |
TERMINATING |
| Modifier and Type | Method and Description |
|---|---|
static Pipe.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Pipe.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pipe.State ACTIVE
public static final Pipe.State DELIMITED
public static final Pipe.State PENDING
public static final Pipe.State TERMINATING
public static final Pipe.State TERMINATED
public static final Pipe.State DOUBLE_TERMINATED
public static Pipe.State[] values()
for (Pipe.State c : Pipe.State.values()) System.out.println(c);
public static Pipe.State valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null