Description
It seems that Instant.Parse is not working. I am trying to use it but it fails.
<developer> copied the argument from the javadoc (here http://threeten.github.io/threetenbp/apidocs/org/threeten/bp/Instant.html#parse(java.lang.CharSequence) but it says that is an illegal format.
JDK Javadoc:
http://download.java.net/jdk8/docs/api/java/time/Instant.html#parse%28java.lang.CharSequence%29
Code:
Instant instant = Instant.parse("2007-12-03T10:15:30:00");
Exception:
org.threeten.bp.format.DateTimeParseException: Text '2007-12-03T10:15:30:00' could not be parsed at index 19
at org.threeten.bp.format.DateTimeFormatter.parseToBuilder(DateTimeFormatter.java:1319)
at org.threeten.bp.format.DateTimeFormatter.parse(DateTimeFormatter.java:1223)
at org.threeten.bp.Instant.parse(Instant.java:339)
at org.modelinglab.ocl.ext.time.classes.InstantDate.testParse(InstantDate.java:19)
The final ":" should be "." and the Zone is required: "2007-12-03T10:15:30.00Z"
See Github issue https://github.com/ThreeTen/threeten/issues/337
<developer> copied the argument from the javadoc (here http://threeten.github.io/threetenbp/apidocs/org/threeten/bp/Instant.html#parse(java.lang.CharSequence) but it says that is an illegal format.
JDK Javadoc:
http://download.java.net/jdk8/docs/api/java/time/Instant.html#parse%28java.lang.CharSequence%29
Code:
Instant instant = Instant.parse("2007-12-03T10:15:30:00");
Exception:
org.threeten.bp.format.DateTimeParseException: Text '2007-12-03T10:15:30:00' could not be parsed at index 19
at org.threeten.bp.format.DateTimeFormatter.parseToBuilder(DateTimeFormatter.java:1319)
at org.threeten.bp.format.DateTimeFormatter.parse(DateTimeFormatter.java:1223)
at org.threeten.bp.Instant.parse(Instant.java:339)
at org.modelinglab.ocl.ext.time.classes.InstantDate.testParse(InstantDate.java:19)
The final ":" should be "." and the Zone is required: "2007-12-03T10:15:30.00Z"
See Github issue https://github.com/ThreeTen/threeten/issues/337