protected static enum ChannelOutputStream.WriteState extends Enum<ChannelOutputStream.WriteState>
Enum Constant and Description |
---|
BUFFERED |
NEED_FLUSH |
NEED_SPACE |
Modifier and Type | Method and Description |
---|---|
static ChannelOutputStream.WriteState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelOutputStream.WriteState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelOutputStream.WriteState BUFFERED
public static final ChannelOutputStream.WriteState NEED_FLUSH
public static final ChannelOutputStream.WriteState NEED_SPACE
public static ChannelOutputStream.WriteState[] values()
for (ChannelOutputStream.WriteState c : ChannelOutputStream.WriteState.values()) System.out.println(c);
public static ChannelOutputStream.WriteState 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–2024 The Apache Software Foundation. All rights reserved.