validateHeaderValue() — netty Function Reference
Architecture documentation for the validateHeaderValue() function in SpdyCodecUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a2f70c70_724e_cde8_fba4_655e6e4eef16["validateHeaderValue()"] f1977c7d_b1bb_ca38_4f32_4a5d0b3425cf["SpdyCodecUtil"] a2f70c70_724e_cde8_fba4_655e6e4eef16 -->|defined in| f1977c7d_b1bb_ca38_4f32_4a5d0b3425cf style a2f70c70_724e_cde8_fba4_655e6e4eef16 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyCodecUtil.java lines 318–327
static void validateHeaderValue(CharSequence value) {
checkNotNull(value, "value");
for (int i = 0; i < value.length(); i ++) {
char c = value.charAt(i);
if (c == 0) {
throw new IllegalArgumentException(
"value contains null character");
}
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does validateHeaderValue() do?
validateHeaderValue() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyCodecUtil.java.
Where is validateHeaderValue() defined?
validateHeaderValue() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdyCodecUtil.java at line 318.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free