public static enum TcpTransport.State extends Enum<TcpTransport.State>
| Enum Constant and Description |
|---|
CONNECTED |
CONNECTING |
DISCONNECTED |
DISCONNECTING |
| Modifier and Type | Method and Description |
|---|---|
static TcpTransport.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TcpTransport.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TcpTransport.State DISCONNECTED
public static final TcpTransport.State CONNECTING
public static final TcpTransport.State CONNECTED
public static final TcpTransport.State DISCONNECTING
public static TcpTransport.State[] values()
for (TcpTransport.State c : TcpTransport.State.values()) System.out.println(c);
public static TcpTransport.State 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 © 2014. All rights reserved.