public enum SocketStatus extends Enum<SocketStatus>
| Enum Constant and Description | 
|---|
| CLOSE_NOWDeprecated.  | 
| DISCONNECT | 
| ERROR | 
| OPEN_READ | 
| OPEN_WRITE | 
| STOP | 
| TIMEOUT | 
| Modifier and Type | Method and Description | 
|---|---|
| static SocketStatus | valueOf(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 CLOSE_NOW
public static SocketStatus[] values()
for (SocketStatus c : SocketStatus.values()) System.out.println(c);
public static SocketStatus 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 © 2000-2020 Apache Software Foundation. All Rights Reserved.