Get the current date.
LocalDate.now()
Get yesterday's date.
LocalDate y = LocalDate.now().minusDays(1);
Get tomorrow's date
LocalDate t = LocalDate.now().plusDays(1);
Get a specific date.
LocalDate t = LocalDate.of(1974, 6, 2, 8, 30, 0, 0);
In addition to the plus and minus methods, ...