next() — netty Function Reference
Architecture documentation for the next() function in ReadOnlyHttpHeaders.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9e26f9d5_5af2_8fae_c259_534d88869a74["next()"] 5e3af441_55b5_b785_00d1_c985438f59fb["ReadOnlyStringIterator"] 9e26f9d5_5af2_8fae_c259_534d88869a74 -->|defined in| 5e3af441_55b5_b785_00d1_c985438f59fb 896dd7a0_7e8d_b755_6042_9aee61242d1e["next()"] 896dd7a0_7e8d_b755_6042_9aee61242d1e -->|calls| 9e26f9d5_5af2_8fae_c259_534d88869a74 896dd7a0_7e8d_b755_6042_9aee61242d1e["next()"] 9e26f9d5_5af2_8fae_c259_534d88869a74 -->|calls| 896dd7a0_7e8d_b755_6042_9aee61242d1e 0e3d67de_a054_dad5_c11b_65fb6362d6b5["hasNext()"] 9e26f9d5_5af2_8fae_c259_534d88869a74 -->|calls| 0e3d67de_a054_dad5_c11b_65fb6362d6b5 style 9e26f9d5_5af2_8fae_c259_534d88869a74 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java lines 339–348
@Override
public Map.Entry<String, String> next() {
if (!hasNext()) {
throw new NoSuchElementException();
}
key = nameValuePairs[nextNameIndex].toString();
value = nameValuePairs[nextNameIndex + 1].toString();
nextNameIndex += 2;
return this;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does next() do?
next() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java.
Where is next() defined?
next() is defined in codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java at line 339.
What does next() call?
next() calls 2 function(s): hasNext, next.
What calls next()?
next() is called by 1 function(s): next.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free