All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.gtfs.mapping.ServiceDateMapper Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.gtfs.mapping;

import org.opentripplanner.model.calendar.ServiceDate;
import org.opentripplanner.model.calendar.ServiceDateInterval;

/** Responsible for mapping GTFS ServiceDate into the OTP model. */
class ServiceDateMapper {
    /** Map from GTFS to OTP model, {@code null} safe.  */
    static ServiceDate mapServiceDate(org.onebusaway.gtfs.model.calendar.ServiceDate orginal) {
        return orginal == null ?
                null :
                new ServiceDate(orginal.getYear(), orginal.getMonth(), orginal.getDay());
    }

    static ServiceDateInterval mapServiceDateInterval(
            org.onebusaway.gtfs.model.calendar.ServiceDate start,
            org.onebusaway.gtfs.model.calendar.ServiceDate end
    ) {
        return new ServiceDateInterval(
                mapServiceDate(start),
                mapServiceDate(end)
        );
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy