With Java 8, the JDK was extended with some functionality for date processing. First, the rather unintuitive machine time exists, which proceeds linearly and is represented by the class java.time.Instant. However, various classes are better suited to human ways of thinking. For example, the classes LocalDate, LocalTime, and LocalDateTime from the package java.time represent date values without time zones in the form of a date, a time, and a combination thereof.
6.1 Introduction
In the following, I will describe some enumerations, classes, ...