Home / Function/ isLowerCase() — netty Function Reference

isLowerCase() — netty Function Reference

Architecture documentation for the isLowerCase() function in AsciiStringUtil.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  daceb129_5a52_fe79_132f_92f11063b370["isLowerCase()"]
  84873396_ba4c_3002_b5f9_9b7743d03751["AsciiStringUtil"]
  daceb129_5a52_fe79_132f_92f11063b370 -->|defined in| 84873396_ba4c_3002_b5f9_9b7743d03751
  c2ee3a38_b203_eb6b_de8d_1ff84daa073c["linearContainsLowerCase()"]
  c2ee3a38_b203_eb6b_de8d_1ff84daa073c -->|calls| daceb129_5a52_fe79_132f_92f11063b370
  bd46daab_535a_f639_4851_df731a593516["unrolledContainsLowerCase()"]
  bd46daab_535a_f639_4851_df731a593516 -->|calls| daceb129_5a52_fe79_132f_92f11063b370
  4145ce36_ee3b_ee17_ea11_7e3ee9de39d1["toUpperCase()"]
  4145ce36_ee3b_ee17_ea11_7e3ee9de39d1 -->|calls| daceb129_5a52_fe79_132f_92f11063b370
  style daceb129_5a52_fe79_132f_92f11063b370 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/AsciiStringUtil.java lines 254–256

    private static boolean isLowerCase(final byte value) {
        return value >= 'a' && value <= 'z';
    }

Domain

Subdomains

Frequently Asked Questions

What does isLowerCase() do?
isLowerCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/AsciiStringUtil.java.
Where is isLowerCase() defined?
isLowerCase() is defined in common/src/main/java/io/netty/util/AsciiStringUtil.java at line 254.
What calls isLowerCase()?
isLowerCase() is called by 3 function(s): linearContainsLowerCase, toUpperCase, unrolledContainsLowerCase.

Analyze Your Own Codebase

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

Try Supermodel Free