TIMEZONEOFFSETFORMAT top-level property
Implementation
final Parser<String> TIMEZONEOFFSETFORMAT = (char('Z') |
(pattern('+-') &
pattern('0-9').times(2) &
char(':') &
pattern('0-9').times(2)))
.flatten();