Home / Function/ nullValuesAreNotAllowed() — netty Function Reference

nullValuesAreNotAllowed() — netty Function Reference

Architecture documentation for the nullValuesAreNotAllowed() function in ReadOnlyHttp2HeadersTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  d88db344_9848_243b_b3cd_c2e2157a6ccd["nullValuesAreNotAllowed()"]
  e54a46f5_3e42_e96a_8c89_2c5628e4cbd9["ReadOnlyHttp2HeadersTest"]
  d88db344_9848_243b_b3cd_c2e2157a6ccd -->|defined in| e54a46f5_3e42_e96a_8c89_2c5628e4cbd9
  style d88db344_9848_243b_b3cd_c2e2157a6ccd fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/ReadOnlyHttp2HeadersTest.java lines 81–89

    @Test
    public void nullValuesAreNotAllowed() {
        assertThrows(IllegalArgumentException.class, new Executable() {
            @Override
            public void execute() {
                ReadOnlyHttp2Headers.trailers(true, new AsciiString("foo"), null);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free