public class AppointmentCollection extends Collection<Appointment>
Represents a collection of Appointment objects.
| Constructor and Description |
|---|
AppointmentCollection()
Initializes a new instance of the AppointmentCollection class that is empty.
|
AppointmentCollection(Iterable<Appointment> appointments)
Initializes a new instance of the AppointmentCollection class
|
| Modifier and Type | Method and Description |
|---|---|
static Appointment[] |
to_(AppointmentCollection appointments)
Converts collection of appointments to array
|
static AppointmentCollection |
to_AppointmentCollection(Appointment[] appointments)
Converts array of appointments to collection
|
static AppointmentCollection |
to_AppointmentCollection(List<Appointment> appointments)
Converts list of appointments to collection
|
static List<Appointment> |
to_List(AppointmentCollection appointments)
Converts collection of appointments to list
|
public AppointmentCollection()
Initializes a new instance of the AppointmentCollection class that is empty.
public AppointmentCollection(Iterable<Appointment> appointments)
Initializes a new instance of the AppointmentCollection class
appointments - initial valuepublic static Appointment[] to_(AppointmentCollection appointments)
Converts collection of appointments to array
appointments - Collection of appointments to convertpublic static AppointmentCollection to_AppointmentCollection(Appointment[] appointments)
Converts array of appointments to collection
appointments - Array of appointments to convertpublic static List<Appointment> to_List(AppointmentCollection appointments)
Converts collection of appointments to list
appointments - Collection of appointments to convertpublic static AppointmentCollection to_AppointmentCollection(List<Appointment> appointments)
Converts list of appointments to collection
appointments - List of appointments to convertCopyright (c) 2008-2024 Aspose Pty Ltd. All Rights Reserved.