public enum ErrorCode extends Enum<ErrorCode>
Enum Constant and Description |
---|
CANCEL |
COMPRESSION_ERROR |
FLOW_CONTROL_ERROR |
FRAME_TOO_LARGE |
INTERNAL_ERROR |
INVALID_CREDENTIALS |
INVALID_STREAM
A subtype of PROTOCOL_ERROR used by SPDY.
|
NO_ERROR
Not an error! For SPDY stream resets, prefer null over NO_ERROR.
|
PROTOCOL_ERROR |
REFUSED_STREAM |
STREAM_ALREADY_CLOSED
A subtype of PROTOCOL_ERROR used by SPDY.
|
STREAM_CLOSED |
STREAM_IN_USE
A subtype of PROTOCOL_ERROR used by SPDY.
|
UNSUPPORTED_VERSION
A subtype of PROTOCOL_ERROR used by SPDY.
|
Modifier and Type | Field and Description |
---|---|
int |
httpCode |
int |
spdyGoAwayCode |
int |
spdyRstCode |
Modifier and Type | Method and Description |
---|---|
static ErrorCode |
fromHttp2(int code) |
static ErrorCode |
fromSpdy3Rst(int code) |
static ErrorCode |
fromSpdyGoAway(int code) |
static ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode NO_ERROR
public static final ErrorCode PROTOCOL_ERROR
public static final ErrorCode INVALID_STREAM
public static final ErrorCode UNSUPPORTED_VERSION
public static final ErrorCode STREAM_IN_USE
public static final ErrorCode STREAM_ALREADY_CLOSED
public static final ErrorCode INTERNAL_ERROR
public static final ErrorCode FLOW_CONTROL_ERROR
public static final ErrorCode STREAM_CLOSED
public static final ErrorCode FRAME_TOO_LARGE
public static final ErrorCode REFUSED_STREAM
public static final ErrorCode CANCEL
public static final ErrorCode COMPRESSION_ERROR
public static final ErrorCode INVALID_CREDENTIALS
public final int httpCode
public final int spdyRstCode
public final int spdyGoAwayCode
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode 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 nullpublic static ErrorCode fromSpdy3Rst(int code)
public static ErrorCode fromHttp2(int code)
public static ErrorCode fromSpdyGoAway(int code)
Copyright © 2014. All rights reserved.