View Javadoc
1   /*
2    * Copyright 2014 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License, version 2.0 (the
5    * "License"); you may not use this file except in compliance with the License. You may obtain a
6    * copy of the License at:
7    *
8    * https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software distributed under the License
11   * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing permissions and limitations under
13   * the License.
14   */
15  
16  package io.netty.handler.codec.http2;
17  
18  /**
19   * All error codes identified by the HTTP/2 spec.
20   */
21  public enum Http2Error {
22      NO_ERROR(0x0),
23      PROTOCOL_ERROR(0x1),
24      INTERNAL_ERROR(0x2),
25      FLOW_CONTROL_ERROR(0x3),
26      SETTINGS_TIMEOUT(0x4),
27      STREAM_CLOSED(0x5),
28      FRAME_SIZE_ERROR(0x6),
29      REFUSED_STREAM(0x7),
30      CANCEL(0x8),
31      COMPRESSION_ERROR(0x9),
32      CONNECT_ERROR(0xA),
33      ENHANCE_YOUR_CALM(0xB),
34      INADEQUATE_SECURITY(0xC),
35      HTTP_1_1_REQUIRED(0xD);
36  
37      private final long code;
38      private static final Http2Error[] INT_TO_ENUM_MAP;
39      static {
40          Http2Error[] errors = values();
41          Http2Error[] map = new Http2Error[errors.length];
42          for (Http2Error error : errors) {
43              map[(int) error.code()] = error;
44          }
45          INT_TO_ENUM_MAP = map;
46      }
47  
48      Http2Error(long code) {
49          this.code = code;
50      }
51  
52      /**
53       * Gets the code for this error used on the wire.
54       */
55      public long code() {
56          return code;
57      }
58  
59      public static Http2Error valueOf(long value) {
60          return value >= INT_TO_ENUM_MAP.length || value < 0 ? null : INT_TO_ENUM_MAP[(int) value];
61      }
62  }