static enum StompSubframeDecoder.State extends java.lang.Enum<StompSubframeDecoder.State>
| Enum Constant and Description |
|---|
BAD_FRAME |
FINALIZE_FRAME_READ |
INVALID_CHUNK |
READ_CONTENT |
READ_HEADERS |
SKIP_CONTROL_CHARACTERS |
| Modifier and Type | Method and Description |
|---|---|
static StompSubframeDecoder.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StompSubframeDecoder.State[] |
values()
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(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