|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractList
java.util.ArrayList
net.fortuna.ical4j.model.DateList
Defines a list of iCalendar dates. If no value type is specified a list defaults to DATE-TIME instances.
Field Summary |
Fields inherited from class java.util.AbstractList |
modCount |
Constructor Summary | |
DateList()
Default constructor. |
|
DateList(DateList list,
Value type)
Constructs a new date list of the specified type containing the dates in the specified list. |
|
DateList(int initialCapacity)
Creates a new instance with the specified initial capacity. |
|
DateList(String aValue,
Value aType)
|
|
DateList(String aValue,
Value aType,
TimeZone timezone)
Parses the specified string representation to create a list of dates. |
|
DateList(Value aType)
|
|
DateList(Value aType,
TimeZone timezone)
Default constructor. |
Method Summary | |
boolean |
add(Date date)
Add a date to the list. |
boolean |
add(Object arg0)
Overrides superclass to throw an IllegalArgumentException
Where argument is not a net.fortuna.ical4j.model.Date . |
TimeZone |
getTimeZone()
|
Value |
getType()
Returns the VALUE parameter specifying the type of dates (ie. |
boolean |
isUtc()
Indicates whether this list is in local or UTC format. |
boolean |
remove(Date date)
Remove a date from the list. |
void |
setTimeZone(TimeZone timeZone)
Applies the specified timezone to all dates in the list. |
void |
setUtc(boolean utc)
Sets whether this list is in UTC or local time format. |
String |
toString()
|
Methods inherited from class java.util.ArrayList |
add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, removeRange, set, size, toArray, toArray, trimToSize |
Methods inherited from class java.util.AbstractList |
equals, hashCode, iterator, listIterator, listIterator, subList |
Methods inherited from class java.util.AbstractCollection |
containsAll, remove, removeAll, retainAll |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
containsAll, equals, hashCode, iterator, listIterator, listIterator, remove, removeAll, retainAll, subList |
Constructor Detail |
public DateList()
public DateList(int initialCapacity)
initialCapacity
- the initial capacity of the listpublic DateList(Value aType)
aType
- public DateList(Value aType, TimeZone timezone)
aType
- specifies the type of dates (either date or date-time)public DateList(String aValue, Value aType) throws ParseException
aValue
- aType
-
ParseException
public DateList(String aValue, Value aType, TimeZone timezone) throws ParseException
aValue
- a string representation of a list of datesaType
- specifies the type of dates (either date or date-time)
ParseException
- if an invalid date representation exists in the date list
stringpublic DateList(DateList list, Value type)
list
- a list of dates to include in the new listtype
- the type of the new listMethod Detail |
public final String toString()
AbstractCollection.toString()
public final boolean add(Date date)
date
- the date to add
List#add(java.lang.Object)
public final boolean add(Object arg0)
IllegalArgumentException
Where argument is not a net.fortuna.ical4j.model.Date
.
add
in interface List
List#add(E)
public final boolean remove(Date date)
date
- the date to remove
List#remove(java.lang.Object)
public final Value getType()
public final boolean isUtc()
public final void setUtc(boolean utc)
utc
- The utc to set.public final void setTimeZone(TimeZone timeZone)
public final TimeZone getTimeZone()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |