jfxtras.icalendarfx.properties.component.recurrence.rrule.RRulePart Maven / Gradle / Ivy
package jfxtras.icalendarfx.properties.component.recurrence.rrule;
import jfxtras.icalendarfx.VChild;
import jfxtras.icalendarfx.VElement;
public interface RRulePart extends VElement, VChild
{
/**
* The value of the recurrence rule value part.
*
* For example, in the below part:
* BYDAY=MO
* The value is MO
*
* Note: the value's object must have an overridden toString method that complies
* with iCalendar content line output.
*/
T getValue();
/** Set the value of this parameter */
void setValue(T value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy