public enum ChannelHandlerType extends Enum<ChannelHandlerType>
ChannelHandler| Modifier and Type | Method and Description |
|---|---|
static ChannelHandlerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelHandlerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelHandlerType STATE
public static final ChannelHandlerType INBOUND
public static final ChannelHandlerType OPERATION
public static final ChannelHandlerType OUTBOUND
public static ChannelHandlerType[] values()
for (ChannelHandlerType c : ChannelHandlerType.values()) System.out.println(c);
public static ChannelHandlerType 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 © 2008-2012 The Netty Project. All Rights Reserved.