@Deprecated public static enum StompSubframeDecoder.State extends Enum<StompSubframeDecoder.State>
Enum Constant and Description |
---|
BAD_FRAME
Deprecated.
|
FINALIZE_FRAME_READ
Deprecated.
|
INVALID_CHUNK
Deprecated.
|
READ_CONTENT
Deprecated.
|
READ_HEADERS
Deprecated.
|
SKIP_CONTROL_CHARACTERS
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static StompSubframeDecoder.State |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static StompSubframeDecoder.State[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StompSubframeDecoder.State SKIP_CONTROL_CHARACTERS
public static final StompSubframeDecoder.State READ_HEADERS
public static final StompSubframeDecoder.State READ_CONTENT
public static final StompSubframeDecoder.State FINALIZE_FRAME_READ
public static final StompSubframeDecoder.State BAD_FRAME
public static final StompSubframeDecoder.State INVALID_CHUNK
public static StompSubframeDecoder.State[] values()
for (StompSubframeDecoder.State c : StompSubframeDecoder.State.values()) System.out.println(c);
public static StompSubframeDecoder.State 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 Netty Project. All rights reserved.