public class SimpleRULE extends Object
https://www.ietf.org/rfc/rfc2445.txt
Modifier and Type | Field and Description |
---|---|
BBjNumber |
Count!
Number of times for event recurrence.
|
BBjString |
FREQ_DAILY!
Constant for days
|
BBjString |
FREQ_HOURLY!
Constant for hours
|
BBjString |
FREQ_MINUTELY!
Constant for minutes
|
BBjString |
FREQ_MONTHLY!
Constant for months
|
BBjString |
FREQ_SECONDLY!
Constant for seconds
|
BBjString |
FREQ_WEEKLY!
Constant for weeks
|
BBjString |
Frequency!
Frequency with which an event or exception should occur: required
|
BBjNumber |
Interval!
Interval.
|
Date |
UntilDate!
Until date for recurrence or exception.
|
Date |
UntilDateTime!
Until date and time for recurrence or exception.
|
Modifier and Type | Method and Description |
---|---|
void |
setCount(BBjNumber count)
Sets the number of times a recurring event should recur.
|
void |
setFrequency(BBjString frequency$)
Describes the regularity with which the event occurs.
|
void |
setUntilDate(Date date!)
Sets a date for a recurring event to end.
|
void |
setUntilDateTime(Date dateTime!)
Sets a date and time for a recurring event to end.
|
BBjString |
toString()
Creates a formatted string from the populated fields.
|
public BBjString FREQ_SECONDLY!
public BBjString FREQ_MINUTELY!
public BBjString FREQ_HOURLY!
public BBjString FREQ_DAILY!
public BBjString FREQ_WEEKLY!
public BBjString FREQ_MONTHLY!
public BBjString Frequency!
public Date UntilDate!
public Date UntilDateTime!
public BBjNumber Count!
public BBjNumber Interval!
public void setFrequency(BBjString frequency$)
frequency$
- String describing the regularity with which an
event will occur. Valid values are one of:
getFREQ_SECONDLY()
getFREQ_MINUTELY()
getFREQ_HOURLY()
getFREQ_DAILY()
getFREQ_WEEKLY()
getFREQ_MONTHLY()
getFREQ_YEARLY()public void setCount(BBjNumber count)
count
- Number of times the recurring event should recur.public void setUntilDate(Date date!)
date!
- a java.util.Date for the ending date of
the recurring sequence.public void setUntilDateTime(Date dateTime!)
dateTime!
- a java.util.Date for the ending date and time of
the recurring sequence.public BBjString toString()