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

jfxtras.icalendarfx.properties.component.recurrence.rrule.RRulePart Maven / Gradle / Ivy

There is a newer version: 17-r1
Show newest version
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