All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jresearch.ical.iter.SingleValueGenerator Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.0.11
Show 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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy