Packagecom.distriqt.extension.calendar
Classpublic class Recurrence
InheritanceRecurrence Inheritance Object

This class defines the recurance properties of an event



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined By
  
Constructor
Recurrence
Public Constants
 ConstantDefined 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
Property Detail
endCountproperty
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.


Implementation
    public function get endCount():int
    public function set endCount(value:int):void
endDateproperty 
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.


Implementation
    public function get endDate():Date
    public function set endDate(value:Date):void
endDateStringproperty 
endDateString:String

Returns the ISO 8601 string representation of the start time


Implementation
    public function get endDateString():String
    public function set endDateString(value:String):void
endTimestampproperty 
endTimestamp:Number


Implementation
    public function get endTimestamp():Number
    public function set endTimestamp(value:Number):void
frequencyproperty 
frequency:String

The frequency of the recurrence rule. Can be daily, weekly, monthly, or yearly.


Implementation
    public function get frequency():String
    public function set frequency(value:String):void
intervalproperty 
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.


Implementation
    public function get interval():int
    public function set interval(value:int):void
notesproperty 
notes:String

A notes field, often will contain the RFC 5545 code for this rule


Implementation
    public function get notes():String
    public function set notes(value:String):void

See also

Constructor Detail
Recurrence()Constructor
public function Recurrence()

Constructor

Constant Detail
DAY_FRIDAYConstant
public static const DAY_FRIDAY:String = friday

DAY_MONDAYConstant 
public static const DAY_MONDAY:String = monday

DAY_SATURDAYConstant 
public static const DAY_SATURDAY:String = saturday

DAY_SUNDAYConstant 
public static const DAY_SUNDAY:String = sunday

DAY_THURSDAYConstant 
public static const DAY_THURSDAY:String = thursday

DAY_TUESDAYConstant 
public static const DAY_TUESDAY:String = tuesday

DAY_WEDNESDAYConstant 
public static const DAY_WEDNESDAY:String = wednesday

FREQUENCY_DAILYConstant 
public static const FREQUENCY_DAILY:String = daily

FREQUENCY_MONTHLYConstant 
public static const FREQUENCY_MONTHLY:String = monthly

FREQUENCY_WEEKLYConstant 
public static const FREQUENCY_WEEKLY:String = weekly

FREQUENCY_YEARLYConstant 
public static const FREQUENCY_YEARLY:String = yearly