Wandelt die Tage seit der UTC-Epoche in ein Datum um. @param utcDays count of days since UTC (1972-01-01) @return found calendar date
(long utcDays)
| 1684 | * @return found calendar date |
| 1685 | */ |
| 1686 | PlainDate withDaysSinceUTC(long utcDays) { |
| 1687 | |
| 1688 | return TRANSFORMER.transform(utcDays); |
| 1689 | |
| 1690 | } |
| 1691 | |
| 1692 | /** |
| 1693 | * <p>Erzeugt ein neues Datum passend zur angegebenen absoluten Zeit. </p> |
no test coverage detected