Class WeekDayList

All Implemented Interfaces:
Serializable, Cloneable, Iterable<WeekDay>, Collection<WeekDay>, List<WeekDay>, RandomAccess

public class WeekDayList extends ArrayList<WeekDay> implements Serializable
$Id$ [29-May-2004] Defines a list of days.
See Also:
  • Constructor Details

    • WeekDayList

      public WeekDayList()
      Default constructor.
    • WeekDayList

      public WeekDayList(WeekDay... weekDays)
    • WeekDayList

      public WeekDayList(int initialCapacity)
      Creates a new instance with the specified initial capacity.
      Parameters:
      initialCapacity - the initial capacity of the list
    • WeekDayList

      public WeekDayList(String aString)
      Constructor.
      Parameters:
      aString - a string representation of a day list
    • WeekDayList

      public WeekDayList(String aString, boolean stripWhitespace)
      Parse a weekday list from a string.
      Parameters:
      aString - a string representation of a day list
      stripWhitespace - remove any whitespace from the string tokens before parsing
  • Method Details