Home / Function/ containsContentEqualsIgnoreCase() — netty Function Reference

containsContentEqualsIgnoreCase() — netty Function Reference

Architecture documentation for the containsContentEqualsIgnoreCase() function in AsciiString.java from the netty codebase.

Function java CommonUtil Logging calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  d7da4546_ad48_4140_703f_6f81d410abf7["containsContentEqualsIgnoreCase()"]
  a41de6d4_fd08_8a12_95fd_35db12fdb4cc["AsciiString"]
  d7da4546_ad48_4140_703f_6f81d410abf7 -->|defined in| a41de6d4_fd08_8a12_95fd_35db12fdb4cc
  5045c980_5890_a32d_5160_eec176da796c["containsAllContentEqualsIgnoreCase()"]
  5045c980_5890_a32d_5160_eec176da796c -->|calls| d7da4546_ad48_4140_703f_6f81d410abf7
  0aa52b3b_ba4d_c24c_6dd8_7abe1be70fb9["contentEqualsIgnoreCase()"]
  d7da4546_ad48_4140_703f_6f81d410abf7 -->|calls| 0aa52b3b_ba4d_c24c_6dd8_7abe1be70fb9
  style d7da4546_ad48_4140_703f_6f81d410abf7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/AsciiString.java lines 1466–1473

    public static boolean containsContentEqualsIgnoreCase(Collection<CharSequence> collection, CharSequence value) {
        for (CharSequence v : collection) {
            if (contentEqualsIgnoreCase(value, v)) {
                return true;
            }
        }
        return false;
    }

Domain

Subdomains

Frequently Asked Questions

What does containsContentEqualsIgnoreCase() do?
containsContentEqualsIgnoreCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/AsciiString.java.
Where is containsContentEqualsIgnoreCase() defined?
containsContentEqualsIgnoreCase() is defined in common/src/main/java/io/netty/util/AsciiString.java at line 1466.
What does containsContentEqualsIgnoreCase() call?
containsContentEqualsIgnoreCase() calls 1 function(s): contentEqualsIgnoreCase.
What calls containsContentEqualsIgnoreCase()?
containsContentEqualsIgnoreCase() is called by 1 function(s): containsAllContentEqualsIgnoreCase.

Analyze Your Own Codebase

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

Try Supermodel Free