public static enum Command.Type extends Enum<Command.Type>
| Enum Constant and Description |
|---|
ACTIVATE_READ |
ACTIVATE_WRITE |
ATTACH |
BIND |
DONE |
HICCUP |
INPROC_CONNECTED |
OWN |
PIPE_TERM |
PIPE_TERM_ACK |
PLUG |
REAP |
REAPED |
STOP |
TERM |
TERM_ACK |
TERM_REQ |
| Modifier and Type | Method and Description |
|---|---|
static Command.Type |
valueOf(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 REAPED
public static final Command.Type INPROC_CONNECTED
public static final Command.Type DONE
public static Command.Type[] values()
for (Command.Type c : Command.Type.values()) System.out.println(c);
public static Command.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 © 2020. All rights reserved.