Class Exclusion
- All Implemented Interfaces:
Serializable
Instance of Exclusion can be added to the ExclusionsDefinition
that contains the list of such exclusion instances. One or more
ExclusionsDefinition
objects are then referred by the Schedule.
An example would be the list of holidays. This list of holidays can be
defined as an ExclusionsDefinition
object where each holiday
is represented by an instance of Exclusion
.
Exclusion can be created with an ExplicitDate
or with an
Recurrence
object. The Recurrence
can represent one
specific date such as Thanksgiving or a recurring pattern.
-
Constructor Summary
ConstructorsConstructorDescriptionExclusion
(String name, ExplicitDate date) Constructs a new instance representing the given explicit date.Exclusion
(String name, Recurrence recur) Constructs a new instance representing the given recurrence. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Compares an object for equality with this Exclusion object.Gets the explicit date this Exclusion object represents.getName()
Gets the name of this Exclusion object.Gets the recurrence of this Exclusion object.int
hashCode()
The hash code value of this Exclusion object.boolean
isExcluded
(Calendar start, Calendar date) Checks if a given date is contained in this Exclusion.void
setExplicitDate
(ExplicitDate date) Sets the explicit date of this Exclusion object.void
Sets the name of this Exclusion object.void
setRecurrence
(Recurrence recur) Sets the recurrence of this Exclusion object.void
validate()
Validates this instance of Exclusion to make sure it contains validRecurrence
orExplicitDate
.
-
Constructor Details
-
Exclusion
Constructs a new instance representing the given explicit date. The name of an Exclusions is optional. An example where the Exclusion might be named is any specific holiday such as Independence Day.- Parameters:
name
- optional name to be given to the Exclusion.date
- the date this Exclusion represent.
-
Exclusion
Constructs a new instance representing the given recurrence. The name of an Exclusions is optional. An example where the Exclusion might be named is any specific holiday such as Thanksgiving.- Parameters:
name
- optional name to be given to the Exclusion.recur
- the recurrence this Exclusion represent.
-
-
Method Details
-
getName
Gets the name of this Exclusion object.- Returns:
- name if present, or
null
otherwise.
-
setName
Sets the name of this Exclusion object. -
setExplicitDate
Sets the explicit date of this Exclusion object.This method cannot be called if object already has a recurrence defined.
- Parameters:
date
- explicit date to be set for this object.- Throws:
UnsupportedOperationException
- thrown if this object already has a recurrence set.
-
getExplicitDate
Gets the explicit date this Exclusion object represents.- Returns:
- explicit date if present, or
null
otherwise.
-
setRecurrence
Sets the recurrence of this Exclusion object.This method cannot be called if this object already contains an explicit date.
- Parameters:
recur
- the Recurrence instance to be set for this object.- Throws:
UnsupportedOperationException
- if this object already has an explicit date set.
-
getRecurrence
Gets the recurrence of this Exclusion object.- Returns:
- the recurrence if present, or
null
otherwise.
-
isExcluded
Checks if a given date is contained in this Exclusion. If a given date is present, it indicates that the specific date must be excluded.The method also requires a start time if this Exclusion instance is based on
Recurrence
. The start time is the time from which the contained recurrence will start generating occurrences to check if the specified date is one of the occurrence or not. The method stops generating occurrence when the given date matches one of the generated occurrence or as soon as the generated occurrence goes beyond (after) the given date.- Parameters:
start
- used as the starting point of this Exclusion is based onRecurrence
. If null, the underlyingRecurrence
will use the current timestamp to generate occurrences.date
- the date/time to be checked for exclusion.- Returns:
true
if the given date must be excluded, orfalse
otherwise.
-
validate
Validates this instance of Exclusion to make sure it contains validRecurrence
orExplicitDate
. This method also gets called viaExclusionsDefinition
during persistence into metadata repository.- Throws:
ValidationException
- if any invalid data is detected.
-
equals
Compares an object for equality with this Exclusion object. -
hashCode
public int hashCode()The hash code value of this Exclusion object.
-