()
| 1658 | * @return ISO-8601-formatted string |
| 1659 | */ |
| 1660 | @Override |
| 1661 | public String toString() { |
| 1662 | |
| 1663 | String s; // racy single-check idiom |
| 1664 | return (s = this.iso8601) != null ? s : (this.iso8601 = this.toStringUTC(true)); |
| 1665 | |
| 1666 | } |
| 1667 | |
| 1668 | /** |
| 1669 | * <p>Creates a formatted view of this instance taking into account |