toLowerCase() — netty Function Reference
Architecture documentation for the toLowerCase() function in AsciiString.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d0a8b2c4_378a_622d_871e_6ea2306b9af0["toLowerCase()"] a41de6d4_fd08_8a12_95fd_35db12fdb4cc["AsciiString"] d0a8b2c4_378a_622d_871e_6ea2306b9af0 -->|defined in| a41de6d4_fd08_8a12_95fd_35db12fdb4cc a72e30a9_4d56_8b77_3c6b_123012c39eb8["AsciiString()"] a72e30a9_4d56_8b77_3c6b_123012c39eb8 -->|calls| d0a8b2c4_378a_622d_871e_6ea2306b9af0 5a9ed78d_0890_217e_ba59_a56f5862a872["equalsIgnoreCase()"] 5a9ed78d_0890_217e_ba59_a56f5862a872 -->|calls| d0a8b2c4_378a_622d_871e_6ea2306b9af0 90e06a8f_6c7a_6d5d_9b67_50e9a1372a59["equals()"] 90e06a8f_6c7a_6d5d_9b67_50e9a1372a59 -->|calls| d0a8b2c4_378a_622d_871e_6ea2306b9af0 7c1e7a0e_a2f9_11e2_7e10_a681fd4ef733["isUpperCase()"] d0a8b2c4_378a_622d_871e_6ea2306b9af0 -->|calls| 7c1e7a0e_a2f9_11e2_7e10_a681fd4ef733 style d0a8b2c4_378a_622d_871e_6ea2306b9af0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/AsciiString.java lines 1826–1828
public static char toLowerCase(char c) {
return isUpperCase(c) ? (char) (c + 32) : c;
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does toLowerCase() do?
toLowerCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/AsciiString.java.
Where is toLowerCase() defined?
toLowerCase() is defined in common/src/main/java/io/netty/util/AsciiString.java at line 1826.
What does toLowerCase() call?
toLowerCase() calls 1 function(s): isUpperCase.
What calls toLowerCase()?
toLowerCase() is called by 3 function(s): AsciiString, equals, equalsIgnoreCase.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free