String() — netty Function Reference
Architecture documentation for the String() function in HttpConversionUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 56b27877_2f95_3c63_5742_dc35487f1536["String()"] 0560b510_c1dc_0a46_6dca_e5dbfb67d807["HttpConversionUtil"] 56b27877_2f95_3c63_5742_dc35487f1536 -->|defined in| 0560b510_c1dc_0a46_6dca_e5dbfb67d807 style 56b27877_2f95_3c63_5742_dc35487f1536 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/HttpConversionUtil.java lines 269–278
private static String extractPath(CharSequence method, Http2Headers headers) {
if (HttpMethod.CONNECT.asciiName().contentEqualsIgnoreCase(method)) {
// See https://tools.ietf.org/html/rfc7231#section-4.3.6
return checkNotNull(headers.authority(),
"authority header cannot be null in the conversion to HTTP/1.x").toString();
} else {
return checkNotNull(headers.path(),
"path header cannot be null in conversion to HTTP/1.x").toString();
}
}
Domain
Subdomains
Source
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/HttpConversionUtil.java.
Where is String() defined?
String() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HttpConversionUtil.java at line 269.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free