Module org.entur.netex.gtfs.export
Interface ServiceCalendarDateProducer
- All Known Implementing Classes:
DefaultServiceCalendarDateProducer
public interface ServiceCalendarDateProducer
Produce a GTFS Service Calendar Date.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionorg.onebusaway.gtfs.model.ServiceCalendarDateproduce(String serviceId, LocalDateTime date, boolean isAvailable) Produce a GTFS Service Calendar Date for a given GTFS service.
-
Field Details
-
SERVICE_ADDED
static final int SERVICE_ADDED- See Also:
-
SERVICE_REMOVED
static final int SERVICE_REMOVED- See Also:
-
-
Method Details
-
produce
org.onebusaway.gtfs.model.ServiceCalendarDate produce(String serviceId, LocalDateTime date, boolean isAvailable) Produce a GTFS Service Calendar Date for a given GTFS service.- Parameters:
serviceId- the id of the GTFS servicedate- the service date.isAvailable- true if the service runs on this date.- Returns:
- a GTFS Service Calendar Date for the given GTFS service.
-