Home / Function/ addQuoted() — netty Function Reference

addQuoted() — netty Function Reference

Architecture documentation for the addQuoted() function in CookieUtil.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  2a9a460c_fdc0_8aa5_2620_5f3923a7a1c5["addQuoted()"]
  2a0180af_7c8d_c2b4_07fb_724a88862fd8["CookieUtil"]
  2a9a460c_fdc0_8aa5_2620_5f3923a7a1c5 -->|defined in| 2a0180af_7c8d_c2b4_07fb_724a88862fd8
  style 2a9a460c_fdc0_8aa5_2620_5f3923a7a1c5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/http/cookie/CookieUtil.java lines 120–132

    static void addQuoted(StringBuilder sb, String name, String val) {
        if (val == null) {
            val = "";
        }

        sb.append(name);
        sb.append('=');
        sb.append('"');
        sb.append(val);
        sb.append('"');
        sb.append(';');
        sb.append(HttpConstants.SP_CHAR);
    }

Subdomains

Frequently Asked Questions

What does addQuoted() do?
addQuoted() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/cookie/CookieUtil.java.
Where is addQuoted() defined?
addQuoted() is defined in codec-http/src/main/java/io/netty/handler/codec/http/cookie/CookieUtil.java at line 120.

Analyze Your Own Codebase

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

Try Supermodel Free