DateTimeFormatterBuilder.ISO_LOCAL_DATE

The ISO date formatter that formats or parses a date without an offset, such as '2011-12-03'. !(p) This returns an immutable formatter capable of formatting and parsing the ISO-8601 extended local date format. The format consists of: !(ul) !(li)Four digits or more for the {@link ChronoField#YEAR year}. Years _in the range 0000 to 9999 will be pre-padded by zero to ensure four digits. Years outside that range will have a prefixed positive or negative symbol. !(li)A dash !(li)Two digits for the {@link ChronoField#MONTH_OF_YEAR month-of-year}. This is pre-padded by zero to ensure two digits. !(li)A dash !(li)Two digits for the {@link ChronoField#DAY_OF_MONTH day-of-month}. This is pre-padded by zero to ensure two digits. </ul> !(p) The returned formatter has a chronology of ISO set to ensure dates _in other calendar systems are correctly converted. It has no override zone and uses the {@link ResolverStyle#STRICT STRICT} resolver style.

class DateTimeFormatterBuilder
static
ISO_LOCAL_DATE
()

Meta