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.6.0
Show newest version
package org.opentripplanner.gtfs.mapping;

import java.time.LocalDate;
import org.opentripplanner.model.calendar.ServiceDateInterval;

/** Responsible for mapping GTFS ServiceDate into the OTP model. */
class ServiceDateMapper {

  /** Map from GTFS ServiceDate to a {@link java.time.LocalDate}, {@code null} safe. */
  static LocalDate mapLocalDate(org.onebusaway.gtfs.model.calendar.ServiceDate orginal) {
    return orginal == null
      ? null
      : LocalDate.of(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(mapLocalDate(start), mapLocalDate(end));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy