Home / Function/ String() — netty Function Reference

String() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  8f5c2c31_c976_76e4_25a5_3b1a22529859["String()"]
  85b5c61c_c9e6_51c8_1f8b_2b4e1da6b052["Http2Flags"]
  8f5c2c31_c976_76e4_25a5_3b1a22529859 -->|defined in| 85b5c61c_c9e6_51c8_1f8b_2b4e1da6b052
  ced1c942_3ad3_4568_0842_2e60f91509a3["ack()"]
  8f5c2c31_c976_76e4_25a5_3b1a22529859 -->|calls| ced1c942_3ad3_4568_0842_2e60f91509a3
  753e96de_5cfa_4809_2de7_60b45f5f022b["endOfHeaders()"]
  8f5c2c31_c976_76e4_25a5_3b1a22529859 -->|calls| 753e96de_5cfa_4809_2de7_60b45f5f022b
  a4fced28_263c_b01d_32aa_cb0082a3e671["endOfStream()"]
  8f5c2c31_c976_76e4_25a5_3b1a22529859 -->|calls| a4fced28_263c_b01d_32aa_cb0082a3e671
  615b1d76_9314_f78c_5f9e_d98349d26d56["priorityPresent()"]
  8f5c2c31_c976_76e4_25a5_3b1a22529859 -->|calls| 615b1d76_9314_f78c_5f9e_d98349d26d56
  46d212d6_8ea3_8b1a_cb9c_d06930f43f71["paddingPresent()"]
  8f5c2c31_c976_76e4_25a5_3b1a22529859 -->|calls| 46d212d6_8ea3_8b1a_cb9c_d06930f43f71
  style 8f5c2c31_c976_76e4_25a5_3b1a22529859 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Flags.java lines 182–203

    @Override
    public String toString() {
        StringBuilder builder = new StringBuilder();
        builder.append("value = ").append(value).append(" (");
        if (ack()) {
            builder.append("ACK,");
        }
        if (endOfHeaders()) {
            builder.append("END_OF_HEADERS,");
        }
        if (endOfStream()) {
            builder.append("END_OF_STREAM,");
        }
        if (priorityPresent()) {
            builder.append("PRIORITY_PRESENT,");
        }
        if (paddingPresent()) {
            builder.append("PADDING_PRESENT,");
        }
        builder.append(')');
        return builder.toString();
    }

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/Http2Flags.java.
Where is String() defined?
String() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2Flags.java at line 182.
What does String() call?
String() calls 5 function(s): ack, endOfHeaders, endOfStream, paddingPresent, priorityPresent.

Analyze Your Own Codebase

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

Try Supermodel Free