Enum GrpcError
- All Implemented Interfaces:
Serializable, Comparable<GrpcError>
gRPC error, a subset of And the list of http/2 codes is taken from spec.
GrpcStatus elements.
- The list of codes is taken from spec.
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic GrpcErrormapHttp2ErrorCode(long code) Map the HTTP/2 code to the gRPC error.static GrpcErrorReturns the enum constant of this type with the specified name.static GrpcError[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INTERNAL
-
UNAVAILABLE
-
CANCELLED
-
RESOURCE_EXHAUSTED
-
PERMISSION_DENIED
-
-
Field Details
-
status
-
http2ResetCode
public final long http2ResetCode
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
mapHttp2ErrorCode
Map the HTTP/2 code to the gRPC error.- Parameters:
code- the HTTP/2 code- Returns:
- the gRPC error or
nullwhen none applies
-