public static enum Command.Type extends java.lang.Enum<Command.Type>
Enum Constant and Description |
---|
ACTIVATE_READ |
ACTIVATE_WRITE |
ATTACH |
BIND |
CANCEL |
DONE |
HICCUP |
INPROC_CONNECTED |
OWN |
PIPE_TERM |
PIPE_TERM_ACK |
PLUG |
REAP |
REAP_ACK |
REAPED |
STOP |
TERM |
TERM_ACK |
TERM_REQ |
Modifier and Type | Method and Description |
---|---|
static Command.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Command.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.Type STOP
public static final Command.Type PLUG
public static final Command.Type OWN
public static final Command.Type ATTACH
public static final Command.Type BIND
public static final Command.Type ACTIVATE_READ
public static final Command.Type ACTIVATE_WRITE
public static final Command.Type HICCUP
public static final Command.Type PIPE_TERM
public static final Command.Type PIPE_TERM_ACK
public static final Command.Type TERM_REQ
public static final Command.Type TERM
public static final Command.Type TERM_ACK
public static final Command.Type REAP
public static final Command.Type REAP_ACK
public static final Command.Type REAPED
public static final Command.Type INPROC_CONNECTED
public static final Command.Type DONE
public static final Command.Type CANCEL
public static Command.Type[] values()
for (Command.Type c : Command.Type.values()) System.out.println(c);
public static Command.Type 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