public enum ErrorCode extends Enum<ErrorCode>
| Enum Constant and Description |
|---|
CANCEL |
FLOW_CONTROL_ERROR |
INTERNAL_ERROR |
NO_ERROR
Not an error!
|
PROTOCOL_ERROR |
REFUSED_STREAM |
| Modifier and Type | Field and Description |
|---|---|
int |
httpCode |
| Modifier and Type | Method and Description |
|---|---|
static ErrorCode |
fromHttp2(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 INTERNAL_ERROR
public static final ErrorCode FLOW_CONTROL_ERROR
public static final ErrorCode REFUSED_STREAM
public static final ErrorCode CANCEL
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 fromHttp2(int code)
Copyright © 2017. All Rights Reserved.