org.jresearch.ical.iter.SingleValueGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jresearch.google-rfc-2445 Show documentation
Show all versions of org.jresearch.google-rfc-2445 Show documentation
RFC 2445 defines protocols for interoperability between calendar applications, and this library provides java implementations for a number of RFC 2445 primitives including those that describe how events repeat. Start by taking alook at the compat packages.
The newest version!
package org.jresearch.ical.iter;
/**
* A marker for Generators that generate exactly one value per
* outer cycle. For example, BYHOUR=3 generates exactly one hour per day and
* BYMONTHDAY=12 generates exactly one day per month but BYHOUR=3,6 does not
* nor does BYMONTHDAY=31.
*/
abstract class SingleValueGenerator extends Generator {
abstract int getValue();
}