Home / Function/ illegalNotFirstChar() — netty Function Reference

illegalNotFirstChar() — netty Function Reference

Architecture documentation for the illegalNotFirstChar() function in DefaultHttp2HeadersDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  49b02935_3904_8f64_c4af_a60d4bb05fcc["illegalNotFirstChar()"]
  bddf27d1_0dcd_a270_e076_3c8aa8b9b31f["DefaultHttp2HeadersDecoderTest"]
  49b02935_3904_8f64_c4af_a60d4bb05fcc -->|defined in| bddf27d1_0dcd_a270_e076_3c8aa8b9b31f
  style 49b02935_3904_8f64_c4af_a60d4bb05fcc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java lines 196–206

    public static List<Integer> illegalNotFirstChar() {
        ArrayList<Integer> list = new ArrayList<Integer>();
        for (int i = 0; i < 0x21; i++) {
            if (i == ' ' || i == '\t') {
                continue; // Space and horizontal tab are only illegal as first chars.
            }
            list.add(i);
        }
        list.add(0x7F);
        return list;
    }

Domain

Subdomains

Frequently Asked Questions

What does illegalNotFirstChar() do?
illegalNotFirstChar() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java.
Where is illegalNotFirstChar() defined?
illegalNotFirstChar() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java at line 196.

Analyze Your Own Codebase

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

Try Supermodel Free