Home / Function/ String() — netty Function Reference

String() — netty Function Reference

Architecture documentation for the String() function in Http2Settings.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  de73e725_4080_4b68_8c6a_5d2dc2d8b4bb["String()"]
  0bc654ce_e607_2ea6_4098_4fbeb4bbc9c9["Http2Settings"]
  de73e725_4080_4b68_8c6a_5d2dc2d8b4bb -->|defined in| 0bc654ce_e607_2ea6_4098_4fbeb4bbc9c9
  style de73e725_4080_4b68_8c6a_5d2dc2d8b4bb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Settings.java lines 282–303

    @Override
    protected String keyToString(char key) {
        switch (key) {
            case SETTINGS_HEADER_TABLE_SIZE:
                return "HEADER_TABLE_SIZE";
            case SETTINGS_ENABLE_PUSH:
                return "ENABLE_PUSH";
            case SETTINGS_MAX_CONCURRENT_STREAMS:
                return "MAX_CONCURRENT_STREAMS";
            case SETTINGS_INITIAL_WINDOW_SIZE:
                return "INITIAL_WINDOW_SIZE";
            case SETTINGS_MAX_FRAME_SIZE:
                return "MAX_FRAME_SIZE";
            case SETTINGS_MAX_HEADER_LIST_SIZE:
                return "MAX_HEADER_LIST_SIZE";
            case SETTINGS_ENABLE_CONNECT_PROTOCOL:
                return "ENABLE_CONNECT_PROTOCOL";
            default:
                // Unknown keys.
                return "0x" + toHexString(key);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does String() do?
String() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Settings.java.
Where is String() defined?
String() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Settings.java at line 282.

Analyze Your Own Codebase

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

Try Supermodel Free