Home / Function/ findNextValue() — netty Function Reference

findNextValue() — netty Function Reference

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

Function java ProtocolCodecs HTTP calls 1 called by 5

Entity Profile

Dependency Diagram

graph TD
  d420a4ef_fc0a_2213_65e5_a76d14fdfc6b["findNextValue()"]
  60778f99_0146_fcc3_0c58_41d3172ec620["ReadOnlyStringValueIterator"]
  d420a4ef_fc0a_2213_65e5_a76d14fdfc6b -->|defined in| 60778f99_0146_fcc3_0c58_41d3172ec620
  4a042d21_590b_aff8_5cf0_503aaebbc8fa["findNextValue()"]
  4a042d21_590b_aff8_5cf0_503aaebbc8fa -->|calls| d420a4ef_fc0a_2213_65e5_a76d14fdfc6b
  88819779_77dd_3702_f143_a6e8ae17e85c["ReadOnlyStringValueIterator()"]
  88819779_77dd_3702_f143_a6e8ae17e85c -->|calls| d420a4ef_fc0a_2213_65e5_a76d14fdfc6b
  1e899da9_b2aa_8a22_72ce_29f1c4c7f2b3["String()"]
  1e899da9_b2aa_8a22_72ce_29f1c4c7f2b3 -->|calls| d420a4ef_fc0a_2213_65e5_a76d14fdfc6b
  3ce38442_c0e4_42a2_2763_622b95438136["ReadOnlyValueIterator()"]
  3ce38442_c0e4_42a2_2763_622b95438136 -->|calls| d420a4ef_fc0a_2213_65e5_a76d14fdfc6b
  e953f93a_6b0c_a0d9_f860_7bf476b6934d["CharSequence()"]
  e953f93a_6b0c_a0d9_f860_7bf476b6934d -->|calls| d420a4ef_fc0a_2213_65e5_a76d14fdfc6b
  4a042d21_590b_aff8_5cf0_503aaebbc8fa["findNextValue()"]
  d420a4ef_fc0a_2213_65e5_a76d14fdfc6b -->|calls| 4a042d21_590b_aff8_5cf0_503aaebbc8fa
  style d420a4ef_fc0a_2213_65e5_a76d14fdfc6b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java lines 407–415

        private int findNextValue() {
            for (int i = nextNameIndex; i < nameValuePairs.length; i += 2) {
                final CharSequence roName = nameValuePairs[i];
                if (nameHash == AsciiString.hashCode(roName) && contentEqualsIgnoreCase(name, roName)) {
                    return i;
                }
            }
            return -1;
        }

Subdomains

Frequently Asked Questions

What does findNextValue() do?
findNextValue() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java.
Where is findNextValue() defined?
findNextValue() is defined in codec-http/src/main/java/io/netty/handler/codec/http/ReadOnlyHttpHeaders.java at line 407.
What does findNextValue() call?
findNextValue() calls 1 function(s): findNextValue.
What calls findNextValue()?
findNextValue() is called by 5 function(s): CharSequence, ReadOnlyStringValueIterator, ReadOnlyValueIterator, String, findNextValue.

Analyze Your Own Codebase

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

Try Supermodel Free