Package | com.distriqt.extension.calendar |
Class | public class Recurrence |
Inheritance | Recurrence Object |
Property | Defined By | ||
---|---|---|---|
endCount : int
Number of times to repeat before terminating
Note that you can only set endDate or endCount. | Recurrence | ||
endDate : Date
End date of the recurrance. | Recurrence | ||
endDateString : String
Returns the ISO 8601 string representation of the start time
| Recurrence | ||
endTimestamp : Number | Recurrence | ||
frequency : String
The frequency of the recurrence rule. | Recurrence | ||
interval : int
The interval between instances of this recurrence. | Recurrence | ||
notes : String
A notes field, often will contain the RFC 5545 code for this rule
| Recurrence |
Method | Defined By | ||
---|---|---|---|
Constructor
| Recurrence |
Constant | Defined By | ||
---|---|---|---|
DAY_FRIDAY : String = friday [static] | Recurrence | ||
DAY_MONDAY : String = monday [static] | Recurrence | ||
DAY_SATURDAY : String = saturday [static] | Recurrence | ||
DAY_SUNDAY : String = sunday [static] | Recurrence | ||
DAY_THURSDAY : String = thursday [static] | Recurrence | ||
DAY_TUESDAY : String = tuesday [static] | Recurrence | ||
DAY_WEDNESDAY : String = wednesday [static] | Recurrence | ||
FREQUENCY_DAILY : String = daily [static] | Recurrence | ||
FREQUENCY_MONTHLY : String = monthly [static] | Recurrence | ||
FREQUENCY_WEEKLY : String = weekly [static] | Recurrence | ||
FREQUENCY_YEARLY : String = yearly [static] | Recurrence |
endCount | property |
endCount:int
Number of times to repeat before terminating Note that you can only set endDate or endCount. If you set both, the endCount condition will get applied.
public function get endCount():int
public function set endCount(value:int):void
endDate | property |
endDate:Date
End date of the recurrance. Note that you can only set endDate or endCount. If you set both, the endCount condition will get applied.
public function get endDate():Date
public function set endDate(value:Date):void
endDateString | property |
endDateString:String
Returns the ISO 8601 string representation of the start time
public function get endDateString():String
public function set endDateString(value:String):void
endTimestamp | property |
endTimestamp:Number
public function get endTimestamp():Number
public function set endTimestamp(value:Number):void
frequency | property |
frequency:String
The frequency of the recurrence rule. Can be daily, weekly, monthly, or yearly.
public function get frequency():String
public function set frequency(value:String):void
interval | property |
interval:int
The interval between instances of this recurrence. For example, a weekly recurrence rule with an interval of 2 occurs every other week. Must be greater than 0.
public function get interval():int
public function set interval(value:int):void
notes | property |
notes:String
A notes field, often will contain the RFC 5545 code for this rule
public function get notes():String
public function set notes(value:String):void
See also
Recurrence | () | Constructor |
public function Recurrence()
Constructor
DAY_FRIDAY | Constant |
public static const DAY_FRIDAY:String = friday
DAY_MONDAY | Constant |
public static const DAY_MONDAY:String = monday
DAY_SATURDAY | Constant |
public static const DAY_SATURDAY:String = saturday
DAY_SUNDAY | Constant |
public static const DAY_SUNDAY:String = sunday
DAY_THURSDAY | Constant |
public static const DAY_THURSDAY:String = thursday
DAY_TUESDAY | Constant |
public static const DAY_TUESDAY:String = tuesday
DAY_WEDNESDAY | Constant |
public static const DAY_WEDNESDAY:String = wednesday
FREQUENCY_DAILY | Constant |
public static const FREQUENCY_DAILY:String = daily
FREQUENCY_MONTHLY | Constant |
public static const FREQUENCY_MONTHLY:String = monthly
FREQUENCY_WEEKLY | Constant |
public static const FREQUENCY_WEEKLY:String = weekly
FREQUENCY_YEARLY | Constant |
public static const FREQUENCY_YEARLY:String = yearly