diff --git a/Calendar-API.md b/Calendar-API.md index 26e4f91..bce6f45 100644 --- a/Calendar-API.md +++ b/Calendar-API.md @@ -24,5 +24,10 @@ LocalDateTime dateTime = LocalDateTime.of(date, time); // Datum mit Uhrzeit - `DateTimeFormatter.ofPattern("MM dd yyyy, HH:mm")` - **Vorsicht**: Bei Verwendung unbekannter Felder `UnsupportedTemporalTypeException` - Wichige Felder - - `MMMM`: Monat (`M` = `1`, `MM` = `01`, `MMM` = `Jan`, `MMMM` = `Januar`) + - `MMMM`: Monat (`M` = `1`, `MM` = `01`, `MMM` = `Jan`, `MMMM` = `Januar`) + - `dd`: Tag des Monats, 1-based + - `,`, `:` geben diese Zeichen aus + - `yyyy`: Jahr, auch `yy` möglich für kürzere Darstellung + - `hh`: Stunde + - `mm`: Minute