public enum ChannelPipelineEvent extends java.lang.Enum<ChannelPipelineEvent>
ChannelPipeline.| Enum Constant and Description |
|---|
RESPONSE_COMPLETE
User event raised in the
ChannelPipeline that indicates the
response is fully received and the Channel is ready to be
returned or disposed. |
| Modifier and Type | Method and Description |
|---|---|
static ChannelPipelineEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChannelPipelineEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelPipelineEvent RESPONSE_COMPLETE
ChannelPipeline that indicates the
response is fully received and the Channel is ready to be
returned or disposed.public static ChannelPipelineEvent[] values()
for (ChannelPipelineEvent c : ChannelPipelineEvent.values()) System.out.println(c);
public static ChannelPipelineEvent 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 null