Enum Class AbstractEndpoint.Handler.SocketState
java.lang.Object
java.lang.Enum<AbstractEndpoint.Handler.SocketState>
org.apache.tomcat.util.net.AbstractEndpoint.Handler.SocketState
- All Implemented Interfaces:
Serializable, Comparable<AbstractEndpoint.Handler.SocketState>, Constable
- Enclosing interface:
AbstractEndpoint.Handler<S>
public static enum AbstractEndpoint.Handler.SocketState
extends Enum<AbstractEndpoint.Handler.SocketState>
Different types of socket states to react upon.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe asynchronous processing phase has ended.Asynchronous I/O is in progress.The socket has been closed.The connection is long-running (e.g., keep-alive).The socket is open and ready for processing.Send file processing is in progress.The socket has been suspended.The connection has been upgraded.The connection is being upgraded (e.g., WebSocket upgrade). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static AbstractEndpoint.Handler.SocketState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OPEN
The socket is open and ready for processing. -
CLOSED
The socket has been closed. -
LONG
The connection is long-running (e.g., keep-alive). -
ASYNC_END
The asynchronous processing phase has ended. -
SENDFILE
Send file processing is in progress. -
UPGRADING
The connection is being upgraded (e.g., WebSocket upgrade). -
UPGRADED
The connection has been upgraded. -
ASYNC_IO
Asynchronous I/O is in progress. -
SUSPENDED
The socket has been suspended.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-