public enum FrameParsingError extends Enum<FrameParsingError>
Modifier and Type | Method and Description |
---|---|
static FrameParsingError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameParsingError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameParsingError UNDERSIZED_FRAME_HEADER
public static final FrameParsingError OVERSIZED_FRAME_HEADER
public static final FrameParsingError DATA_OFFSET_IN_HEADER
public static final FrameParsingError DATA_OFFSET_TOO_LARGE
public static final FrameParsingError UNKNOWN_FRAME_TYPE
public static final FrameParsingError CHANNEL_ID_BEYOND_MAX
public static final FrameParsingError SPARE_OCTETS_IN_FRAME_BODY
public static final FrameParsingError INSUFFICIENT_OCTETS_IN_FRAME_BODY
public static final FrameParsingError UNKNOWN_TYPE_CODE
public static final FrameParsingError UNPARSABLE_TYPE
public static FrameParsingError[] values()
for (FrameParsingError c : FrameParsingError.values()) System.out.println(c);
public static FrameParsingError 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 © 2006–2016 The Apache Software Foundation. All rights reserved.