public enum SocketStatus extends java.lang.Enum<SocketStatus>
Enum Constant and Description |
---|
ASYNC_READ_ERROR
Deprecated.
|
ASYNC_WRITE_ERROR
Deprecated.
|
CLOSE_NOW
Deprecated.
|
DISCONNECT |
ERROR |
OPEN_READ |
OPEN_WRITE |
STOP |
TIMEOUT |
Modifier and Type | Method and Description |
---|---|
static SocketStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SocketStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SocketStatus OPEN_READ
public static final SocketStatus OPEN_WRITE
public static final SocketStatus STOP
public static final SocketStatus TIMEOUT
public static final SocketStatus DISCONNECT
public static final SocketStatus ERROR
@Deprecated public static final SocketStatus ASYNC_WRITE_ERROR
@Deprecated public static final SocketStatus ASYNC_READ_ERROR
@Deprecated public static final SocketStatus CLOSE_NOW
public static SocketStatus[] values()
for (SocketStatus c : SocketStatus.values()) System.out.println(c);
public static SocketStatus 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 nullCopyright © 2000-2018 Apache Software Foundation. All Rights Reserved.