Prints to an Appendable the string representation (in Ion format) of this Timestamp in its local time. This method produces the same output as #toString(). @param out not null @throws IOException propagated when the Appendable throws it @throws IonException if t
(Appendable out)
| 2127 | * @see #printZ(Appendable) |
| 2128 | */ |
| 2129 | public void print(Appendable out) |
| 2130 | throws IOException |
| 2131 | { |
| 2132 | print(out, DEFAULT_MAXIMUM_DIGITS_TEXT); |
| 2133 | } |
| 2134 | |
| 2135 | /** |
| 2136 | * Prints to an {@code Appendable} the string representation (in Ion format) |
no test coverage detected