public enum ErrorCode extends Enum<ErrorCode>
Enum Constant and Description |
---|
CANCEL |
COMPRESSION_ERROR |
CONNECT_ERROR |
ENHANCE_YOUR_CALM |
FLOW_CONTROL_ERROR |
FRAME_SIZE_ERROR |
INADEQUATE_SECURITY |
INTERNAL_ERROR |
NO_ERROR |
PROTOCOL_ERROR |
REFUSED_STREAM |
SETTINGS_TIMEOUT |
STREAM_CLOSED |
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
static ErrorCode |
lookup(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 SETTINGS_TIMEOUT
public static final ErrorCode STREAM_CLOSED
public static final ErrorCode FRAME_SIZE_ERROR
public static final ErrorCode REFUSED_STREAM
public static final ErrorCode CANCEL
public static final ErrorCode COMPRESSION_ERROR
public static final ErrorCode CONNECT_ERROR
public static final ErrorCode ENHANCE_YOUR_CALM
public static final ErrorCode INADEQUATE_SECURITY
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 lookup(int code)
public int getCode()
Copyright © 2021 Oracle Corporation. All rights reserved.