Home Reference Source Repository
import {DateTimeFormatter} from 'js-joda/src/format/DateTimeFormatter.js'
public class | source

DateTimeFormatter

Static properties of Class DateTimeFormatter

DateTimeFormatter.ISO_LOCAL_DATE

DateTimeFormatter.ISO_LOCAL_TIME

DateTimeFormatter.ISO_LOCAL_DATE_TIME

Static Method Summary

Static Public Methods
public static

A query that provides access to the excess days that were parsed.

public static

A query that provides access to whether a leap-second was parsed.

Constructor Summary

Public Constructor
public

constructor(printerParser: *, locale: *, decimalStyle: *, resolverStyle: *, resolverFields: *, chrono: *, zone: *)

Constructor.

Method Summary

Public Methods
public

chronology(): *

public
public

Formats a date-time object using this formatter.

public

locale(): *

public

function overloading for DateTimeFormatter.parse

public

Fully parses the text producing a temporal object.

public

parse2(text: *, type: *): *

Fully parses the text producing a temporal object.

public

parseUnresolved(text: *, position: *): *

Parses the text using this formatter, without resolving the result, intended for advanced use cases.

public

toPrinterParser(optional: boolean): CompositePrinterParser

Returns the formatter as a composite printer parser.

public

toString(): *

public

withChronology(chrono: *): *

Returns a copy of this formatter with a new override chronology.

public

not yet supported

Static Public Methods

public static parsedExcessDays(): TemporalQuery source

A query that provides access to the excess days that were parsed.

This returns a singleton {@linkplain TemporalQuery query} that provides access to additional information from the parse. The query always returns a non-null period, with a zero period returned instead of null.

There are two situations where this query may return a non-zero period.

  • If the {@code ResolverStyle} is {@code LENIENT} and a time is parsed without a date, then the complete result of the parse consists of a {@code LocalTime} and an excess {@code Period} in days.
  • If the {@code ResolverStyle} is {@code SMART} and a time is parsed without a date where the time is 24:00:00, then the complete result of the parse consists of a {@code LocalTime} of 00:00:00 and an excess {@code Period} of one day.
  • In both cases, if a complete {@code ChronoLocalDateTime} or {@code Instant} is parsed, then the excess days are added to the date part. As a result, this query will return a zero period.

    The {@code SMART} behaviour handles the common "end of day" 24:00 value. Processing in {@code LENIENT} mode also produces the same result:

     Text to parse        Parsed object                         Excess days
     "2012-12-03T00:00"   LocalDateTime.of(2012, 12, 3, 0, 0)   ZERO
     "2012-12-03T24:00"   LocalDateTime.of(2012, 12, 4, 0, 0)   ZERO
     "00:00"              LocalTime.of(0, 0)                    ZERO
     "24:00"              LocalTime.of(0, 0)                    Period.ofDays(1)
    
    The query can be used as follows:
     TemporalAccessor parsed = formatter.parse(str);
     LocalTime time = parsed.query(LocalTime.FROM);
     Period extraDays = parsed.query(DateTimeFormatter.parsedExcessDays());
    

    Return:

    TemporalQuery

    a query that provides access to the excess days that were parsed

    public static parsedLeapSecond(): * source

    A query that provides access to whether a leap-second was parsed.

    This returns a singleton {@linkplain TemporalQuery query} that provides access to additional information from the parse. The query always returns a non-null boolean, true if parsing saw a leap-second, false if not.

    Instant parsing handles the special "leap second" time of '23:59:60'. Leap seconds occur at '23:59:60' in the UTC time-zone, but at other local times in different time-zones. To avoid this potential ambiguity, the handling of leap-seconds is limited to {@link DateTimeFormatterBuilder#appendInstant()}, as that method always parses the instant with the UTC zone offset.

    If the time '23:59:60' is received, then a simple conversion is applied, replacing the second-of-minute of 60 with 59. This query can be used on the parse result to determine if the leap-second adjustment was made. The query will return one second of excess if it did adjust to remove the leap-second, and zero if not. Note that applying a leap-second smoothing mechanism, such as UTC-SLS, is the responsibility of the application, as follows:

     TemporalAccessor parsed = formatter.parse(str);
     Instant instant = parsed.query(Instant::from);
     if (parsed.query(DateTimeFormatter.parsedLeapSecond())) {
       // validate leap-second is correct and apply correct smoothing
     }
    

    Return:

    *

    a query that provides access to whether a leap-second was parsed

    Public Constructors

    public constructor(printerParser: *, locale: *, decimalStyle: *, resolverStyle: *, resolverFields: *, chrono: *, zone: *) source

    Constructor.

    Params:

    NameTypeAttributeDescription
    printerParser *

    the printer/parser to use, not null

    locale *

    the locale to use, not null

    decimalStyle *

    the decimal style to use, not null

    resolverStyle *

    the resolver style to use, not null

    resolverFields *

    the fields to use during resolving, null for all fields

    chrono *

    the chronology to use, null for no override

    zone *

    the zone to use, null for no override

    Public Methods

    public chronology(): * source

    Return:

    *

    public decimalStyle(): * source

    Return:

    *

    public format(temporal: TemporalAccessor): String source

    Formats a date-time object using this formatter.

    This formats the date-time to a String using the rules of the formatter.

    Params:

    NameTypeAttributeDescription
    temporal TemporalAccessor

    the temporal object to print, not null

    Return:

    String

    the printed string, not null

    Throw:

    *

    DateTimeException if an error occurs during formatting

    public locale(): * source

    Return:

    *

    public parse(text: string, type: TemporalQuery): TemporalAccessor source

    function overloading for DateTimeFormatter.parse

    if called with one arg DateTimeFormatter.parse1 is called otherwise DateTimeFormatter.parse2

    Params:

    NameTypeAttributeDescription
    text string
    type TemporalQuery

    public parse1(text: String): TemporalAccessor source

    Fully parses the text producing a temporal object.

    This parses the entire text producing a temporal object. It is typically more useful to use {@link #parse(CharSequence, TemporalQuery)}. The result of this method is {@code TemporalAccessor} which has been resolved, applying basic validation checks to help ensure a valid date-time.

    If the parse completes without reading the entire length of the text, or a problem occurs during parsing or merging, then an exception is thrown.

    Params:

    NameTypeAttributeDescription
    text String

    the text to parse, not null

    Return:

    TemporalAccessor

    the parsed temporal object, not null

    Throw:

    *

    DateTimeParseException if unable to parse the requested result

    public parse2(text: *, type: *): * source

    Fully parses the text producing a temporal object.

    This parses the entire text producing a temporal object. It is typically more useful to use {@link #parse(CharSequence, TemporalQuery)}. The result of this method is {@code TemporalAccessor} which has been resolved, applying basic validation checks to help ensure a valid date-time.

    If the parse completes without reading the entire length of the text, or a problem occurs during parsing or merging, then an exception is thrown.

    Params:

    NameTypeAttributeDescription
    text *

    the text to parse, not null

    type *

    the type to extract, not null

    Return:

    *

    the parsed temporal object, not null

    Throw:

    *

    DateTimeParseException if unable to parse the requested result

    public parseUnresolved(text: *, position: *): * source

    Parses the text using this formatter, without resolving the result, intended for advanced use cases.

    Parsing is implemented as a two-phase operation. First, the text is parsed using the layout defined by the formatter, producing a {@code Map} of field to value, a {@code ZoneId} and a {@code Chronology}. Second, the parsed data is <em>resolved</em>, by validating, combining and simplifying the various fields into more useful ones. This method performs the parsing stage but not the resolving stage.

    The result of this method is {@code TemporalAccessor} which represents the data as seen in the input. Values are not validated, thus parsing a date string of '2012-00-65' would result in a temporal with three fields - year of '2012', month of '0' and day-of-month of '65'.

    The text will be parsed from the specified start {@code ParsePosition}. The entire length of the text does not have to be parsed, the {@code ParsePosition} will be updated with the index at the end of parsing.

    Errors are returned using the error index field of the {@code ParsePosition} instead of {@code DateTimeParseException}. The returned error index will be set to an index indicative of the error. Callers must check for errors before using the context.

    If the formatter parses the same field more than once with different values, the result will be an error.

    This method is intended for advanced use cases that need access to the internal state during parsing. Typical application code should use {@link #parse(CharSequence, TemporalQuery)} or the parse method on the target type.

    Params:

    NameTypeAttributeDescription
    text *

    the text to parse, not null

    position *

    the position to parse from, updated with length parsed and the index of any error, not null

    Return:

    *

    the parsed text, null if the parse results in an error

    Throw:

    *

    DateTimeException if some problem occurs during parsing

    *

    IndexOutOfBoundsException if the position is invalid

    public toPrinterParser(optional: boolean): CompositePrinterParser source

    Returns the formatter as a composite printer parser.

    Params:

    NameTypeAttributeDescription
    optional boolean

    whether the printer/parser should be optional

    Return:

    CompositePrinterParser

    the printer/parser, not null

    public toString(): * source

    Return:

    *

    public withChronology(chrono: *): * source

    Returns a copy of this formatter with a new override chronology.

    This returns a formatter with similar state to this formatter but with the override chronology set. By default, a formatter has no override chronology, returning null.

    If an override is added, then any date that is printed or parsed will be affected.

    When printing, if the {@code Temporal} object contains a date then it will be converted to a date in the override chronology. Any time or zone will be retained unless overridden. The converted result will behave in a manner equivalent to an implementation of {@code ChronoLocalDate},{@code ChronoLocalDateTime} or {@code ChronoZonedDateTime}.

    When parsing, the override chronology will be used to interpret the {@linkplain ChronoField fields} into a date unless the formatter directly parses a valid chronology.

    This instance is immutable and unaffected by this method call.

    Params:

    NameTypeAttributeDescription
    chrono *

    the new chronology, not null

    Return:

    *

    a formatter based on this formatter with the requested override chronology, not null

    public withLocal(): DateTimeFormatter source

    not yet supported