Enum GrpcError

java.lang.Object
java.lang.Enum<GrpcError>
io.vertx.grpc.common.GrpcError
All Implemented Interfaces:
Serializable, Comparable<GrpcError>

public enum GrpcError extends Enum<GrpcError>
gRPC error, a subset of GrpcStatus elements.
  • The list of codes is taken from spec.
  • And the list of http/2 codes is taken from spec.
    • Enum Constant Details

      • INTERNAL

        public static final GrpcError INTERNAL
      • UNAVAILABLE

        public static final GrpcError UNAVAILABLE
      • CANCELLED

        public static final GrpcError CANCELLED
      • RESOURCE_EXHAUSTED

        public static final GrpcError RESOURCE_EXHAUSTED
      • PERMISSION_DENIED

        public static final GrpcError PERMISSION_DENIED
    • Field Details

      • status

        public final GrpcStatus status
      • http2ResetCode

        public final long http2ResetCode
    • Method Details

      • values

        public static GrpcError[] 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

        public static GrpcError valueOf(String name)
        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 name
        NullPointerException - if the argument is null
      • mapHttp2ErrorCode

        public static GrpcError mapHttp2ErrorCode(long code)
        Map the HTTP/2 code to the gRPC error.
        Parameters:
        code - the HTTP/2 code
        Returns:
        the gRPC error or null when none applies