Package net.fortuna.ical4j.connector
Interface ObjectCollection<T>
-
- Type Parameters:
T
- the object type stored by the collection $Id$ Created on 27/09/2008
- All Known Subinterfaces:
CalendarCollection
,CardCollection
- All Known Implementing Classes:
AbstractDavObjectCollection
,AbstractJcrObjectCollection
,AbstractLocalObjectCollection
,CalDavCalendarCollection
,CardDavCollection
,JcrCalendarCollection
,JcrCardCollection
,LocalCalendarCollection
,LocalCardCollection
public interface ObjectCollection<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T[]
getComponents()
Returns all objects stored in the collection.String
getDescription()
String
getDisplayName()
-
-
-
Method Detail
-
getDisplayName
String getDisplayName()
- Returns:
- the collection name
-
getDescription
String getDescription()
- Returns:
- the collection description
-
getComponents
T[] getComponents() throws ObjectStoreException
Returns all objects stored in the collection.- Returns:
- an array of collection objects
- Throws:
ObjectStoreException
- where an unexpected error occurs
-
-