javatimetemporal
javatimetemporal is the package in Java's standard library that provides the core abstractions for working with date and time in a calendar- and chronology-aware way. It forms the foundation of the java.time framework introduced in Java 8 and defines the interfaces, enums, and helper types used to represent, query, and manipulate temporal values in a uniform manner.
The central concepts in the package are Temporal, TemporalAccessor, TemporalAdjuster, TemporalUnit, and TemporalField. Temporal is the
TemporalUnit defines units of time for arithmetic, with ChronoUnit as a standard enum implementing this interface
Concrete temporal classes in the Java time API, including LocalDate, LocalTime, LocalDateTime, OffsetDateTime, ZonedDateTime, and Instant,
---