org.apache.tomcat.util.net
public enum SocketStatus extends java.lang.Enum<SocketStatus>
| Enum Constant and Description |
|---|
DISCONNECT |
ERROR |
OPEN |
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
public static final SocketStatus STOP
public static final SocketStatus TIMEOUT
public static final SocketStatus DISCONNECT
public static final SocketStatus ERROR
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-2013 Apache Software Foundation. All Rights Reserved.