()
| 1525 | * @return canonical ISO-8601-formatted string |
| 1526 | */ |
| 1527 | @Override |
| 1528 | public String toString() { |
| 1529 | |
| 1530 | StringBuilder sb = new StringBuilder(32); |
| 1531 | formatYear(sb, this.year); |
| 1532 | format2Digits(sb, this.month); |
| 1533 | format2Digits(sb, this.dayOfMonth); |
| 1534 | return sb.toString(); |
| 1535 | |
| 1536 | } |
| 1537 | |
| 1538 | /** |
| 1539 | * <p>Normalized given timespan using years, months and days. </p> |
nothing calls this directly
no test coverage detected