|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
net.fortuna.ical4j.model.PropertyList
public class PropertyList
$Id$ [Apr 5, 2004] Defines a list of iCalendar properties.
Field Summary |
---|
Fields inherited from class java.util.AbstractList |
---|
modCount |
Constructor Summary | |
---|---|
PropertyList()
Default constructor. |
|
PropertyList(int initialCapacity)
Creates a new instance with the specified initial capacity. |
|
PropertyList(PropertyList properties)
Creates a deep copy of the specified property list. |
Method Summary | |
---|---|
boolean |
add(Object property)
Overrides superclass to throw an IllegalArgumentException where argument is not a
net.fortuna.ical4j.model.Property . |
boolean |
add(Property property)
Add a property to the list. |
PropertyList |
getProperties(String name)
Returns a list of properties with the specified name. |
Property |
getProperty(String aName)
Returns the first property of specified name. |
boolean |
remove(Property property)
Remove a property from the list. |
String |
toString()
|
Methods inherited from class java.util.ArrayList |
---|
add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeRange, retainAll, set, size, subList, toArray, toArray, trimToSize |
Methods inherited from class java.util.AbstractList |
---|
equals, hashCode |
Methods inherited from class java.util.AbstractCollection |
---|
containsAll |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
containsAll, equals, hashCode |
Constructor Detail |
---|
public PropertyList()
public PropertyList(int initialCapacity)
initialCapacity
- the initial capacity of the listpublic PropertyList(PropertyList properties) throws ParseException, IOException, URISyntaxException
properties
- a property list
ParseException
- where property data cannot be parsed
IOException
- where property data cannot be read
URISyntaxException
- where a property contains an invalid URIMethod Detail |
---|
public final String toString()
toString
in class AbstractCollection
public final Property getProperty(String aName)
aName
- name of property to return
public final PropertyList getProperties(String name)
name
- name of properties to return
public final boolean add(Property property)
property
- the property to add
List.add(java.lang.Object)
public final boolean add(Object property)
IllegalArgumentException
where argument is not a
net.fortuna.ical4j.model.Property
.
add
in interface Collection
add
in interface List
add
in class ArrayList
property
- a property to add
java.util.List#add(E)
public final boolean remove(Property property)
property
- the property to remove
List.remove(java.lang.Object)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |