de.svws_nrw.davapi.util.icalendar.recurrence.Frequency Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of svws-module-dav-api Show documentation
Show all versions of svws-module-dav-api Show documentation
Diese Bibliothek enthält die Java-Server-Definition der CalDAV und CardDAV-Schnittstelle für die Schulverwaltungssoftware in NRW
package de.svws_nrw.davapi.util.icalendar.recurrence;
/**
* Dieses Enum repräsentiert die Frequenz wiederkehrender Ereignisse. vgl.
* RFC
* 5545
*
*/
public enum Frequency {
/** Sekündlich */
SECONDLY,
/** Minütlich */
MINUTELY,
/** Stündlich */
HOURLY,
/** Täglich */
DAILY,
/** Wöchentlich */
WEEKLY,
/** Monatlich */
MONTHLY,
/** Jährlich */
YEARLY
}