(CharSequence text)
| 33 | } |
| 34 | |
| 35 | public static Instant parse(CharSequence text) { |
| 36 | return (Instant) DateTimeFormatter.ISO_INSTANT.parse(text); |
| 37 | } |
| 38 | |
| 39 | public long getEpochSecond() { |
| 40 | return epochSecond; |
no outgoing calls
no test coverage detected