public static enum NettyServerCustomizer.ChannelRole extends Enum<NettyServerCustomizer.ChannelRole>
NettyServerCustomizer.specializeForChannel(Channel, ChannelRole)
.Enum Constant and Description |
---|
CONNECTION
The channel is a connection channel, e.g.
|
LISTENER
The channel is a "listener" channel, e.g.
|
Modifier and Type | Method and Description |
---|---|
static NettyServerCustomizer.ChannelRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NettyServerCustomizer.ChannelRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NettyServerCustomizer.ChannelRole LISTENER
ServerSocketChannel
representing a TCP listener the
server is bound to.public static final NettyServerCustomizer.ChannelRole CONNECTION
SocketChannel
, representing an HTTP connection.public static NettyServerCustomizer.ChannelRole[] values()
for (NettyServerCustomizer.ChannelRole c : NettyServerCustomizer.ChannelRole.values()) System.out.println(c);
public static NettyServerCustomizer.ChannelRole 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 null