public enum HttpHandlerNames extends java.lang.Enum<HttpHandlerNames>
| Enum Constant and Description |
|---|
HttpClientCodec |
HttpServerDecoder |
HttpServerEncoder |
SseClientCodec |
SseServerCodec |
WsClientDecoder |
WsClientEncoder |
WsClientUpgradeHandler |
WsServerDecoder |
WsServerEncoder |
WsServerUpgradeHandler |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName() |
static HttpHandlerNames |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpHandlerNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpHandlerNames HttpClientCodec
public static final HttpHandlerNames HttpServerDecoder
public static final HttpHandlerNames HttpServerEncoder
public static final HttpHandlerNames WsServerDecoder
public static final HttpHandlerNames WsServerEncoder
public static final HttpHandlerNames WsServerUpgradeHandler
public static final HttpHandlerNames WsClientDecoder
public static final HttpHandlerNames WsClientEncoder
public static final HttpHandlerNames WsClientUpgradeHandler
public static final HttpHandlerNames SseClientCodec
public static final HttpHandlerNames SseServerCodec
public static HttpHandlerNames[] values()
for (HttpHandlerNames c : HttpHandlerNames.values()) System.out.println(c);
public static HttpHandlerNames 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 nullpublic java.lang.String getName()