Interface IAppointmentRangeView
-
- All Known Implementing Classes:
AppointmentRangeView
public interface IAppointmentRangeView
A view of anAppointment
that includes only the start and end time.- Since:
- 6.5.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Long
getId()
default Instant
getInstantFrom()
default Instant
getInstantUntil()
long
getTimestampFrom()
long
getTimestampUntil()
-
-
-
Method Detail
-
getInstantFrom
default Instant getInstantFrom()
- Returns:
- The value of the underlying
Appointment.getTimestampFrom()
.
-
getInstantUntil
default Instant getInstantUntil()
- Returns:
- The value of the underlying
Appointment.getInstantUntil()
.
-
getTimestampFrom
long getTimestampFrom()
- Returns:
- The value of the underlying
Appointment.getTimestampFrom()
.
-
getTimestampUntil
long getTimestampUntil()
- Returns:
- The value of the underlying
Appointment.getTimestampUntil()
.
-
getId
Long getId()
- Returns:
- The value of the underlying
Appointment.getId()
.
-
-