DateTimeFormatterBuilder.toFormatter

Completes this builder by creating the {@code DateTimeFormatter} using the specified locale. !(p) This will create a formatter with the specified locale. Numbers will be printed and parsed using the standard DecimalStyle. The resolver style will be {@link ResolverStyle#SMART SMART}. !(p) Calling this method will end any open optional sections by repeatedly calling {@link #optionalEnd()} before creating the formatter. !(p) This builder can still be used after creating the formatter if desired, although the state may have been changed by calls to {@code optionalEnd}.

@param locale the locale to use for formatting, not null @return the created formatter, not null

  1. DateTimeFormatter toFormatter()
  2. DateTimeFormatter toFormatter(Locale locale)
    class DateTimeFormatterBuilder
    toFormatter
    (
    Locale locale
    )
  3. DateTimeFormatter toFormatter(ResolverStyle resolverStyle, Chronology chrono)

Meta