Searched refs:ISO_LOCAL_DATE_TIME (Results 1 – 3 of 3) sorted by relevance
892 public static final DateTimeFormatter ISO_LOCAL_DATE_TIME; field in DateTimeFormatter894 ISO_LOCAL_DATE_TIME = new DateTimeFormatterBuilder()925 .append(ISO_LOCAL_DATE_TIME)997 .append(ISO_LOCAL_DATE_TIME)
676 assertEquals(DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(test), expected); in test_print_isoLocalDateTime()679 DateTimeFormatter.ISO_LOCAL_DATE_TIME.format(test); in test_print_isoLocalDateTime()694 …assertParseMatch(DateTimeFormatter.ISO_LOCAL_DATE_TIME.parseUnresolved(input, new ParsePosition(0)… in test_parse_isoLocalDateTime()700 assertEquals(DateTimeFormatter.ISO_LOCAL_DATE_TIME.getChronology(), IsoChronology.INSTANCE); in test_isoLocalDateTime_basics()701 assertEquals(DateTimeFormatter.ISO_LOCAL_DATE_TIME.getZone(), null); in test_isoLocalDateTime_basics()702 … assertEquals(DateTimeFormatter.ISO_LOCAL_DATE_TIME.getResolverStyle(), ResolverStyle.STRICT); in test_isoLocalDateTime_basics()
471 return parse(text, DateTimeFormatter.ISO_LOCAL_DATE_TIME); in parse()