public class Week extends Object implements Serializable
| Constructor and Description | 
|---|
Week()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
addDay(Day vDay)  | 
void | 
addDay(int index,
      Day vDay)  | 
Enumeration<Day> | 
enumerateDay()
Method enumerateDay. 
 | 
Day[] | 
getDay()
Method getDay.Returns the contents of the collection in an Array. 
 | 
Day | 
getDay(int index)
Method getDay. 
 | 
List<Day> | 
getDayCollection()
Method getDayCollection.Returns a reference to 'dayList'. 
 | 
int | 
getDayCount()
Method getDayCount. 
 | 
Iterator<Day> | 
iterateDay()
Method iterateDay. 
 | 
void | 
removeAllDay()  | 
boolean | 
removeDay(Day vDay)
Method removeDay. 
 | 
Day | 
removeDayAt(int index)
Method removeDayAt. 
 | 
void | 
setDay(Day[] vDayArray)  | 
void | 
setDay(int index,
      Day vDay)  | 
void | 
setDay(List<Day> vDayList)
Sets the value of 'dayList' by copying the given Vector. 
 | 
void | 
setDayCollection(List<Day> dayList)
Deprecated.   
 | 
public void addDay(Day vDay) throws IndexOutOfBoundsException
vDay - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic void addDay(int index,
                   Day vDay)
            throws IndexOutOfBoundsException
index - vDay - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic Enumeration<Day> enumerateDay()
public Day getDay(int index) throws IndexOutOfBoundsException
index - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic Day[] getDay()
Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
public List<Day> getDayCollection()
public int getDayCount()
public Iterator<Day> iterateDay()
public void removeAllDay()
public boolean removeDay(Day vDay)
vDay - public Day removeDayAt(int index)
index - public void setDay(int index,
                   Day vDay)
            throws IndexOutOfBoundsException
index - vDay - IndexOutOfBoundsException - if the index given is outside
 the bounds of the collectionpublic void setDay(Day[] vDayArray)
vDayArray - public void setDay(List<Day> vDayList)
vDayList - the Vector to copy.Copyright © 2020. All rights reserved.