Interface CalendarEvent
-
- All Known Implementing Classes:
AbstractCalendarEvent,SimpleCalendarEvent
public interface CalendarEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description org.teamapps.common.format.ColorgetBackgroundColor()org.teamapps.common.format.ColorgetBorderColor()longgetEnd()default java.time.InstantgetEndInstant()default org.teamapps.icons.api.IcongetIcon()In case the event is rendered without a template, use this icon.CalendarEventRenderingStylegetRendering()longgetStart()default java.time.InstantgetStartInstant()default java.lang.StringgetTitle()In case the event is rendered without a template, use this title.booleanisAllDay()booleanisAllowDragOperations()
-
-
-
Method Detail
-
getStart
long getStart()
-
getStartInstant
default java.time.Instant getStartInstant()
-
getEnd
long getEnd()
-
getEndInstant
default java.time.Instant getEndInstant()
-
isAllDay
boolean isAllDay()
-
getIcon
default org.teamapps.icons.api.Icon getIcon()
In case the event is rendered without a template, use this icon.
-
getTitle
default java.lang.String getTitle()
In case the event is rendered without a template, use this title.
-
getBackgroundColor
org.teamapps.common.format.Color getBackgroundColor()
-
getBorderColor
org.teamapps.common.format.Color getBorderColor()
-
getRendering
CalendarEventRenderingStyle getRendering()
-
isAllowDragOperations
boolean isAllowDragOperations()
-
-