Home / Function/ next() — netty Function Reference

next() — netty Function Reference

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

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  0eb0f220_1a59_db63_84c1_797dedf171a8["next()"]
  51d1aa1f_bd7a_590c_70cd_b60b74e65b4d["ReadOnlyIterator"]
  0eb0f220_1a59_db63_84c1_797dedf171a8 -->|defined in| 51d1aa1f_bd7a_590c_70cd_b60b74e65b4d
  430b05f8_ded3_9445_eefc_aadb1449996f["CharSequence()"]
  430b05f8_ded3_9445_eefc_aadb1449996f -->|calls| 0eb0f220_1a59_db63_84c1_797dedf171a8
  ad1231a0_6365_b46e_1c4c_a894740db9a5["hasNext()"]
  0eb0f220_1a59_db63_84c1_797dedf171a8 -->|calls| ad1231a0_6365_b46e_1c4c_a894740db9a5
  style 0eb0f220_1a59_db63_84c1_797dedf171a8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/ReadOnlyHttp2Headers.java lines 852–865

        @Override
        public Map.Entry<CharSequence, CharSequence> next() {
            if (!hasNext()) {
                throw new NoSuchElementException();
            }
            key = current[i];
            value = current[i + 1];
            i += 2;
            if (i == current.length && current == pseudoHeaders) {
                current = otherHeaders;
                i = 0;
            }
            return this;
        }

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does next() do?
next() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/ReadOnlyHttp2Headers.java.
Where is next() defined?
next() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/ReadOnlyHttp2Headers.java at line 852.
What does next() call?
next() calls 1 function(s): hasNext.
What calls next()?
next() is called by 1 function(s): CharSequence.

Analyze Your Own Codebase

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

Try Supermodel Free