Class RecurrenceSet

java.lang.Object
oracle.as.scheduler.RecurrenceSet
All Implemented Interfaces:
Serializable

public class RecurrenceSet extends Object implements 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

    Constructors
    Constructor
    Description
    Constructs a new instance of RecurrenceSet.
    RecurrenceSet(Recurrence... recurrences)
    Constructs a new instance with the given recurrences.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(Recurrence recurrence)
    Add a Recurrence to this object.
    boolean
    Compares an object for equality with this RecurrenceSet object.
    Returns an iterator for list of Recurrence.
    void
    remove(Recurrence recurrence)
    Method to remove a Recurrence from this RecurrenceSet object.
    int
    Returns the size of this RecurrenceSet.
    Returns a String representation for this RecurrenceSet object.
    void
    Validates this instance of RecurrenceSet.

    Methods inherited from class java.lang.Object

    getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • RecurrenceSet

      public RecurrenceSet()
      Constructs a new instance of RecurrenceSet.
    • RecurrenceSet

      public RecurrenceSet(Recurrence... recurrences) throws ValidationException
      Constructs a new instance with the given recurrences.
      Parameters:
      recurrences - - collection of recurrence instances for the new instance.
      Throws:
      ValidationException
  • Method Details

    • add

      public void add(Recurrence recurrence) throws ValidationException
      Add a Recurrence to this object.
      Parameters:
      recurrence - - instance of Recurrence to be added to this object.
      Throws:
      ValidationException
    • remove

      public void remove(Recurrence recurrence)
      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

      public Iterator<Recurrence> 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

      public void validate() throws ValidationException
      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

      public boolean equals(Object obj)
      Compares an object for equality with this RecurrenceSet object.
      Overrides:
      equals in class Object
      Parameters:
      obj - - the object to compare with this RecurrenceSet.
      Returns:
      - true if the object passed in is an instance of RecurrenceSet and is equal to this RecurrenceSet, false otherwise.
    • toString

      public String toString()
      Returns a String representation for this RecurrenceSet object.
      Overrides:
      toString in class Object
      Returns:
      String representing this RecurrenceSet.