Enum DateTimeFormatterBuilder.SettingsParser

    • Constructor Detail

      • SettingsParser

        private SettingsParser()
    • Method Detail

      • values

        public static DateTimeFormatterBuilder.SettingsParser[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DateTimeFormatterBuilder.SettingsParser c : DateTimeFormatterBuilder.SettingsParser.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DateTimeFormatterBuilder.SettingsParser valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • print

        public boolean print​(DateTimePrintContext context,
                             java.lang.StringBuilder buf)
        Description copied from interface: DateTimeFormatterBuilder.DateTimePrinterParser
        Prints the date-time object to the buffer.

        The context holds information to use during the print. It also contains the date-time information to be printed.

        The buffer must not be mutated beyond the content controlled by the implementation.

        Specified by:
        print in interface DateTimeFormatterBuilder.DateTimePrinterParser
        Parameters:
        context - the context to print using, not null
        buf - the buffer to append to, not null
        Returns:
        false if unable to query the value from the date-time, true otherwise
      • parse

        public int parse​(DateTimeParseContext context,
                         java.lang.CharSequence text,
                         int position)
        Description copied from interface: DateTimeFormatterBuilder.DateTimePrinterParser
        Parses text into date-time information.

        The context holds information to use during the parse. It is also used to store the parsed date-time information.

        Specified by:
        parse in interface DateTimeFormatterBuilder.DateTimePrinterParser
        Parameters:
        context - the context to use and parse into, not null
        text - the input text to parse, not null
        position - the position to start parsing at, from 0 to the text length
        Returns:
        the new parse position, where negative means an error with the error position encoded using the complement ~ operator