The ISO time formatter that formats or parses a time without an
offset, such as '10:15' or '10:15:30'.
!(p)
This returns an immutable formatter capable of formatting and parsing
the ISO-8601 extended local time format.
The format consists of:
!(ul)
!(li)Two digits for the {@link ChronoField#HOUR_OF_DAY hour-of-day}.
This is pre-padded by zero to ensure two digits.
!(li)A colon
!(li)Two digits for the {@link ChronoField#MINUTE_OF_HOUR minute-of-hour}.
This is pre-padded by zero to ensure two digits.
!(li)If the second-of-minute is not available then the format is complete.
!(li)A colon
!(li)Two digits for the {@link ChronoField#SECOND_OF_MINUTE second-of-minute}.
This is pre-padded by zero to ensure two digits.
!(li)If the nano-of-second is zero or not available then the format is complete.
!(li)A decimal point
!(li)One to nine digits for the {@link ChronoField#NANO_OF_SECOND nano-of-second}.
As many digits will be output as required.
</ul>
!(p)
The returned formatter has no override chronology or zone.
It uses the {@link ResolverStyle#STRICT STRICT} resolver style.
The ISO time formatter that formats or parses a time without an offset, such as '10:15' or '10:15:30'. !(p) This returns an immutable formatter capable of formatting and parsing the ISO-8601 extended local time format. The format consists of: !(ul) !(li)Two digits for the {@link ChronoField#HOUR_OF_DAY hour-of-day}. This is pre-padded by zero to ensure two digits. !(li)A colon !(li)Two digits for the {@link ChronoField#MINUTE_OF_HOUR minute-of-hour}. This is pre-padded by zero to ensure two digits. !(li)If the second-of-minute is not available then the format is complete. !(li)A colon !(li)Two digits for the {@link ChronoField#SECOND_OF_MINUTE second-of-minute}. This is pre-padded by zero to ensure two digits. !(li)If the nano-of-second is zero or not available then the format is complete. !(li)A decimal point !(li)One to nine digits for the {@link ChronoField#NANO_OF_SECOND nano-of-second}. As many digits will be output as required. </ul> !(p) The returned formatter has no override chronology or zone. It uses the {@link ResolverStyle#STRICT STRICT} resolver style.