Calendar

data class Calendar(val serviceId: String, val monday: Boolean, val tuesday: Boolean, val wednesday: Boolean, val thursday: Boolean, val friday: Boolean, val saturday: Boolean, val sunday: Boolean, val startDate: LocalDate, val endDate: LocalDate) : Iterable<LocalDate>

See https://developers.google.com/transit/gtfs/reference#calendartxt

Constructors

Link copied to clipboard
constructor(serviceId: String, monday: Boolean, tuesday: Boolean, wednesday: Boolean, thursday: Boolean, friday: Boolean, saturday: Boolean, sunday: Boolean, startDate: LocalDate, endDate: LocalDate)

Functions

Link copied to clipboard
open fun forEach(p0: Consumer<in LocalDate>)
Link copied to clipboard
open operator override fun iterator(): Iterator<LocalDate>
Link copied to clipboard

Properties

Link copied to clipboard

Set containing days of week of the calendar

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard