[New] Added ISO8601.EMPTY_VALUE_LOCAL_DATE

This commit is contained in:
Robert von Burg 2020-06-29 16:04:17 +02:00
parent 682ce014be
commit 40a604ebb6
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,9 @@ public class ISO8601 implements DateFormat {
public static final ZonedDateTime EMPTY_VALUE_ZONED_DATE = ZonedDateTime
.ofInstant(EMPTY_VALUE.toInstant(), systemDefault());
public static final LocalDateTime EMPTY_VALUE_LOCAL_DATE = LocalDateTime
.ofInstant(EMPTY_VALUE.toInstant(), systemDefault());
private static final DateTimeFormatter _LOCAL_DATE_TIME_SECONDS;
static {