Class AppointmentAvailableDate

java.lang.Object
de.xima.fc.appointment.AppointmentAvailableDate
All Implemented Interfaces:
IAppointmentAvailableDate, Serializable

public class AppointmentAvailableDate extends Object implements IAppointmentAvailableDate
Implementation of a IAppointmentAvailableDate.
Since:
6.5.0
Author:
XIMA MEDIA GmbH
See Also:
  • Constructor Details

    • AppointmentAvailableDate

      public AppointmentAvailableDate(LocalDate date, IAppointmentFreeSlot... times)
      Creates a new free slot for the given date and times.
      Parameters:
      date - Date to use.
      times - Time to use. Modifications to this array do not affect the newly created instance.
    • AppointmentAvailableDate

      public AppointmentAvailableDate(LocalDate date, Iterable<IAppointmentFreeSlot> times)
      Creates a new free slot for the given date and times.
      Parameters:
      date - Date to use.
      times - Time to use. Modifications to this array do not affect the newly created instance.
    • AppointmentAvailableDate

      public AppointmentAvailableDate(LocalDate date, Stream<IAppointmentFreeSlot> times)
      Creates a new free slot for the given date and times.
      Parameters:
      date - Date to use.
      times - Time to use. Modifications to this array do not affect the newly created instance.
  • Method Details