reset() — netty Function Reference
Architecture documentation for the reset() function in DateFormatter.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD afd84912_a53c_0efd_cf18_8b2ce4d9f206["reset()"] 868307e6_8dd7_9eb3_bb13_ca685c4d59cf["DateFormatter"] afd84912_a53c_0efd_cf18_8b2ce4d9f206 -->|defined in| 868307e6_8dd7_9eb3_bb13_ca685c4d59cf b5129ed8_824e_d34a_52e5_2c3380366ab0["DateFormatter()"] b5129ed8_824e_d34a_52e5_2c3380366ab0 -->|calls| afd84912_a53c_0efd_cf18_8b2ce4d9f206 style afd84912_a53c_0efd_cf18_8b2ce4d9f206 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-base/src/main/java/io/netty/handler/codec/DateFormatter.java lines 165–178
public void reset() {
timeFound = false;
hours = -1;
minutes = -1;
seconds = -1;
dayOfMonthFound = false;
dayOfMonth = -1;
monthFound = false;
month = -1;
yearFound = false;
year = -1;
cal.clear();
sb.setLength(0);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does reset() do?
reset() is a function in the netty codebase, defined in codec-base/src/main/java/io/netty/handler/codec/DateFormatter.java.
Where is reset() defined?
reset() is defined in codec-base/src/main/java/io/netty/handler/codec/DateFormatter.java at line 165.
What calls reset()?
reset() is called by 1 function(s): DateFormatter.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free