import org.softsmithy.lib.time.LocalTimeUtil;
public class DateTimeExample {
public static void main(String[] args) {
LocalDate currentDate = LocalDate.now();
LocalTime currentTime = LocalTimeUtil.now();
LocalDate pastDate = LocalDate.of(2020, Month.JANUARY, 1);
boolean isBefore = currentDate.isBefore(pastDate);
String formattedDate = currentDate.format(DateTimeFormatter.ofPattern("dd-MM-yyyy"));
LocalDate futureDate = currentDate.plusDays(7);
}
}