Package oracle.as.scheduler
Class RecurrenceSet
java.lang.Object
oracle.as.scheduler.RecurrenceSet
- All Implemented Interfaces:
Serializable
Used for representing a collection of
Recurrence
objects as
a single unit.
A Schedule
definition can use this to define a complex case
consisting of multiple recurrences (final schedule recurrence would be
a union of these individual recurrences).
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new instance of RecurrenceSet.RecurrenceSet
(Recurrence... recurrences) Constructs a new instance with the given recurrences. -
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(Recurrence recurrence) Add a Recurrence to this object.boolean
Compares an object for equality with this RecurrenceSet object.iterator()
Returns an iterator for list of Recurrence.void
remove
(Recurrence recurrence) Method to remove a Recurrence from this RecurrenceSet object.int
size()
Returns the size of this RecurrenceSet.toString()
Returns a String representation for this RecurrenceSet object.void
validate()
Validates this instance of RecurrenceSet.
-
Constructor Details
-
RecurrenceSet
public RecurrenceSet()Constructs a new instance of RecurrenceSet. -
RecurrenceSet
Constructs a new instance with the given recurrences.- Parameters:
recurrences
- - collection of recurrence instances for the new instance.- Throws:
ValidationException
-
-
Method Details
-
add
Add a Recurrence to this object.- Parameters:
recurrence
- - instance of Recurrence to be added to this object.- Throws:
ValidationException
-
remove
Method to remove a Recurrence from this RecurrenceSet object.- Parameters:
recurrence
- - the Recurrence instance to be removed from the list of recurrences contained in this object.
-
iterator
Returns an iterator for list of Recurrence.- Returns:
- - Iterator over Recurrence.
-
size
public int size()Returns the size of this RecurrenceSet.- Returns:
- - size of RecurrenceSet in int.
-
validate
Validates this instance of RecurrenceSet.The method performs checks that are possible on this object.
- Throws:
ValidationException
- - thrown if any invalid data is detected.
-
equals
Compares an object for equality with this RecurrenceSet object. -
toString
Returns a String representation for this RecurrenceSet object.
-