Home / Class/ HttpConstants Class — netty Architecture

HttpConstants Class — netty Architecture

Architecture documentation for the HttpConstants class in HttpConstants.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  b0429e47_3a44_4543_6f7f_85d5dfbcfb58["HttpConstants"]
  490bfea1_a436_ddfa_75a9_fe73ba86345b["HttpConstants.java"]
  b0429e47_3a44_4543_6f7f_85d5dfbcfb58 -->|defined in| 490bfea1_a436_ddfa_75a9_fe73ba86345b
  5de059ea_1fb6_11e7_f2dd_1513c7d838d0["HttpConstants()"]
  b0429e47_3a44_4543_6f7f_85d5dfbcfb58 -->|method| 5de059ea_1fb6_11e7_f2dd_1513c7d838d0

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/http/HttpConstants.java lines 22–82

public final class HttpConstants {

    /**
     * Horizontal space
     */
    public static final byte SP = 32;

    /**
     * Horizontal tab
     */
    public static final byte HT = 9;

    /**
     * Carriage return
     */
    public static final byte CR = 13;

    /**
     * Equals '='
     */
    public static final byte EQUALS = 61;

    /**
     * Line feed character
     */
    public static final byte LF = 10;

    /**
     * Colon ':'
     */
    public static final byte COLON = 58;

    /**
     * Semicolon ';'
     */
    public static final byte SEMICOLON = 59;

    /**
     * Comma ','
     */
    public static final byte COMMA = 44;

    /**
     * Double quote '"'
     */
    public static final byte DOUBLE_QUOTE = '"';

    /**
     * Default character set (UTF-8)
     */
    public static final Charset DEFAULT_CHARSET = CharsetUtil.UTF_8;

    /**
     * Horizontal space
     */
    public static final char SP_CHAR = (char) SP;

    private HttpConstants() {
        // Unused
    }
}

Frequently Asked Questions

What is the HttpConstants class?
HttpConstants is a class in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpConstants.java.
Where is HttpConstants defined?
HttpConstants is defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpConstants.java at line 22.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free