com.cc.framework.ui.model
Interface RecurrencePattern
- All Superinterfaces:
- DataModel
- All Known Implementing Classes:
- RecurrencePatternImp
- public interface RecurrencePattern
- extends DataModel
Pattern for recurring appointments
- Version:
- $Revision: 1.10 $
- Author:
- Harald Schulz
Method Summary |
Appointment |
getAppointment()
|
int |
getDayOfMonth()
The DayOfMonth property contains the calendar date of each month on which
the AppointmentItem is to recur, for example the value 1 to indicate the
first day of every month. |
int |
getDayOfWeekMask()
The maximum value for the DayOfWeekMask property is 127, which is the
logical inclusive OR of all seven days. |
RecurrenceException[] |
getExceptions()
|
int |
getInstance()
The Instance property is used when the AppointmentItem is to recur only
once during each recurrence unit, such as the second Wednesday of every
month or the first Tuesday of every January. |
int |
getInterval()
The Interval property is used when the AppointmentItem is to recur less
often than every recurrence unit, such as once every three days, once
every two weeks, or once every six months. |
int |
getMonthOfYear()
The MonthOfYear property contains the calendar number of the month in
which the AppointmentItem is to recur, for example the value 2 to
indicate February.
|
int |
getOccurrences()
The Occurrences property is used when the appointment is to recur a
specific number of times, such as the next ten Thursdays. |
java.util.Calendar |
getPatternEndDate()
The PatternEndDate property contains the latest possible date of the last
occurrence of the appointment. |
java.util.Calendar |
getPatternStartDate()
The PatternStartDate property contains the earliest possible date of the
first occurrence of the appointment. |
RecurrenceType |
getRecurrenceType()
|
boolean |
hasNoEndDate()
The NoEndDate property contains True if the AppointmentItem object is to
recur indefinitely and False if the recurrence has a terminal date.
|
java.util.Iterator |
iterator()
This method creates an iterator that can be used to iterate the single
occurrences of this pattern. |
boolean |
match(java.util.Calendar date)
This method checks if the recurrence pattern matches the given date |
void |
setAppointment(Appointment appointment)
sets the reference to the appointment item |
void |
setPattern(RecurrenceType recurType,
int dayOfMonth,
int dayOfWeekMask,
int instance,
int interval,
int monthOfYear)
Sets the recurrence pattern fields |
setAppointment
public void setAppointment(Appointment appointment)
- sets the reference to the appointment item
- Parameters:
appointment
- appointment item
setPattern
public void setPattern(RecurrenceType recurType,
int dayOfMonth,
int dayOfWeekMask,
int instance,
int interval,
int monthOfYear)
- Sets the recurrence pattern fields
- Parameters:
recurType
- Recurrence TypedayOfMonth
- Day of MonthdayOfWeekMask
- Day of Week maskinstance
- instanceinterval
- intervalmonthOfYear
- month of the year
getAppointment
public Appointment getAppointment()
- Returns:
- Returns the parent AppointmentItem object
getRecurrenceType
public RecurrenceType getRecurrenceType()
- Returns:
- Returns the Recurrence type
getDayOfMonth
public int getDayOfMonth()
- The DayOfMonth property contains the calendar date of each month on which
the AppointmentItem is to recur, for example the value 1 to indicate the
first day of every month. The last day of every month can be represented
by the value 31 in monthly recurrences. For yearly recurrences,
DayOfMonth cannot be set past the last possible day in the selected
month.
If an appointment is viewed and its DayOfMonth property has a value
greater than the number of days in the specified month, it does not
generate a recurrence for that month. This applies, for example, if
DayOfMonth is 29 and MonthOfYear is 2. For such an appointment, it only
generates a recurrence in leap years, whereas generate recurrences on
February 28 for years other than leap years.
DayOfMonth is only valid if the value of the RecurrenceType property is
MONTHLY or YEARLY. When DayOfMonth is valid on a newly created
RecurrencePattern object, it defaults to the current day of the month.
- Returns:
- Day of month
getDayOfWeekMask
public int getDayOfWeekMask()
- The maximum value for the DayOfWeekMask property is 127, which is the
logical inclusive OR of all seven days. An attempt to set DayOfWeekMask
to any value less than 0 or greater than 127 results in an OutOfBounds
Exception.
DayOfWeekMask is only valid if the value of the RecurrenceType property
is WEEKLY, MONTHLY_NTH, or YEARLY_NTH. When DayOfWeekMask is valid on a
newly created RecurrencePattern object, it defaults to the current day of
the week.
Setting DayOfWeekMask to multiple days per week is only valid if the
value of the RecurrenceType property is WEEKLY. Recurrences of type
MONTHLY_NTH or YEARLY_NTH can only use a single day per week.
- Returns:
- Day of Week
hasNoEndDate
public boolean hasNoEndDate()
- The NoEndDate property contains True if the AppointmentItem object is to
recur indefinitely and False if the recurrence has a terminal date.
NoEndDate is always valid on a newly created RecurrencePattern object and
defaults to True.
- Returns:
true
if the AppointmentItem object is to recur
indefinitely
getInstance
public int getInstance()
- The Instance property is used when the AppointmentItem is to recur only
once during each recurrence unit, such as the second Wednesday of every
month or the first Tuesday of every January. The DayOfWeekMask property
must specify exactly one day of the week, and Instance selects the
occurrence of that day within the month on which recurrence is enabled.
The last occurrence of the day within the month can be represented by the
value 5.
Instance is only valid if the value of the RecurrenceType property is
MONTHLY_NTH or YEARLY_NTH. When Instance is valid on a newly created
RecurrencePattern object, it defaults to the current instance of the
current day of the week. For example, if the RecurrencePattern object is
created on Wednesday 9 December and RecurrenceType is set to YEARLY_NTH,
then DayOfWeekMask defaults to 8 (Wednesday), Instance defaults to 2 (the
second Wednesday of the month), and MonthOfYear defaults to 12
(December).
- Returns:
- Instance
getInterval
public int getInterval()
- The Interval property is used when the AppointmentItem is to recur less
often than every recurrence unit, such as once every three days, once
every two weeks, or once every six months. Interval contains a value
representing the frequency of recurrence in terms of recurrence units.
- Returns:
- Interval
getMonthOfYear
public int getMonthOfYear()
- The MonthOfYear property contains the calendar number of the month in
which the AppointmentItem is to recur, for example the value 2 to
indicate February.
MonthOfYear is only valid if the value of the RecurrenceType property is
YEARLY or YEARLY_NTH. When MonthOfYear is valid on a newly created
RecurrencePattern object, it defaults to the current month.
- Returns:
- MonthOfYear
getOccurrences
public int getOccurrences()
- The Occurrences property is used when the appointment is to recur a
specific number of times, such as the next ten Thursdays. Occurrences has
a minimum value of 1 and represents the total number of occurrences of
the AppointmentItem object fitting the recurrence pattern. This
qualification is necessary because the days of the original appointment,
the PatternStartDate, and the PatternEndDate are not required to be
included in the pattern specified by the DayOfMonth, DayOfWeekMask,
Instance, Interval, and MonthOfYear properties. The original appointment
is counted in Occurrences only if it matches the pattern.
Occurrences is always valid on a newly created RecurrencePattern object
and defaults to its maximum value of 1,490,000. If the NoEndDate property
is subsequently set to False, Occurrences defaults to 10.
- Returns:
- Number of occurrences
getPatternEndDate
public java.util.Calendar getPatternEndDate()
- The PatternEndDate property contains the latest possible date of the last
occurrence of the appointment. This qualification is necessary because
PatternEndDate is not required to be included in the pattern specified by
the DayOfMonth, DayOfWeekMask, Instance, Interval, and MonthOfYear
properties. A recurrence is generated on PatternEndDate only if it
matches the pattern.
- Returns:
- PatternEndDate
getPatternStartDate
public java.util.Calendar getPatternStartDate()
- The PatternStartDate property contains the earliest possible date of the
first occurrence of the appointment. This qualification is necessary
because PatternStartDate is not required to be included in the pattern
specified by the DayOfMonth, DayOfWeekMask, Instance, Interval, and
MonthOfYear properties. A recurrence is generated on PatternStartDate
only if it matches the pattern.
- Returns:
- PatternStartDate
getExceptions
public RecurrenceException[] getExceptions()
- Returns:
- Returns an collection of exceptions for a specified series of
recurring appointments
match
public boolean match(java.util.Calendar date)
- This method checks if the recurrence pattern matches the given date
- Parameters:
date
- The date to check
- Returns:
true
if the pattern matches the Date
iterator
public java.util.Iterator iterator()
- This method creates an iterator that can be used to iterate the single
occurrences of this pattern.
- Returns:
- Iterator of Calendar Objects
Copyright © 2000-2005 SCC Informationssysteme GmbH. All Rights Reserved.