toUpperCase() — netty Function Reference
Architecture documentation for the toUpperCase() function in SWARUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD be340ceb_e073_bee6_b99c_3503ae799dd2["toUpperCase()"] 42ee86cb_49f5_6d26_1f37_9aa45922bfe1["SWARUtil"] be340ceb_e073_bee6_b99c_3503ae799dd2 -->|defined in| 42ee86cb_49f5_6d26_1f37_9aa45922bfe1 80ebba66_2d31_1fc8_2306_dd0d02c32430["applyLowerCasePattern()"] be340ceb_e073_bee6_b99c_3503ae799dd2 -->|calls| 80ebba66_2d31_1fc8_2306_dd0d02c32430 style be340ceb_e073_bee6_b99c_3503ae799dd2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/internal/SWARUtil.java lines 159–162
public static long toUpperCase(final long word) {
final long mask = applyLowerCasePattern(word) >>> 2;
return word & ~mask;
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does toUpperCase() do?
toUpperCase() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/SWARUtil.java.
Where is toUpperCase() defined?
toUpperCase() is defined in common/src/main/java/io/netty/util/internal/SWARUtil.java at line 159.
What does toUpperCase() call?
toUpperCase() calls 1 function(s): applyLowerCasePattern.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free