Home / Function/ next() — netty Function Reference

next() — netty Function Reference

Architecture documentation for the next() function in ReadOnlyHttpHeaders.java from the netty codebase.

Function java ProtocolCodecs HTTP calls 2 called by 3

Entity Profile

Dependency Diagram

graph TD
  896dd7a0_7e8d_b755_6042_9aee61242d1e["next()"]
  83dbfa48_7afe_0f66_2c03_4e9e6ecf0fee["ReadOnlyIterator"]
  896dd7a0_7e8d_b755_6042_9aee61242d1e -->|defined in| 83dbfa48_7afe_0f66_2c03_4e9e6ecf0fee
  9e26f9d5_5af2_8fae_c259_534d88869a74["next()"]
  9e26f9d5_5af2_8fae_c259_534d88869a74 -->|calls| 896dd7a0_7e8d_b755_6042_9aee61242d1e
  1e899da9_b2aa_8a22_72ce_29f1c4c7f2b3["String()"]
  1e899da9_b2aa_8a22_72ce_29f1c4c7f2b3 -->|calls| 896dd7a0_7e8d_b755_6042_9aee61242d1e
  e953f93a_6b0c_a0d9_f860_7bf476b6934d["CharSequence()"]
  e953f93a_6b0c_a0d9_f860_7bf476b6934d -->|calls| 896dd7a0_7e8d_b755_6042_9aee61242d1e
  9e26f9d5_5af2_8fae_c259_534d88869a74["next()"]
  896dd7a0_7e8d_b755_6042_9aee61242d1e -->|calls| 9e26f9d5_5af2_8fae_c259_534d88869a74
  0e3d67de_a054_dad5_c11b_65fb6362d6b5["hasNext()"]
  896dd7a0_7e8d_b755_6042_9aee61242d1e -->|calls| 0e3d67de_a054_dad5_c11b_65fb6362d6b5
  style 896dd7a0_7e8d_b755_6042_9aee61242d1e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java lines 291–300

        @Override
        public Map.Entry<CharSequence, CharSequence> next() {
            if (!hasNext()) {
                throw new NoSuchElementException();
            }
            key = nameValuePairs[nextNameIndex];
            value = nameValuePairs[nextNameIndex + 1];
            nextNameIndex += 2;
            return this;
        }

Subdomains

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 291.
What does next() call?
next() calls 2 function(s): hasNext, next.
What calls next()?
next() is called by 3 function(s): CharSequence, String, next.

Analyze Your Own Codebase

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

Try Supermodel Free