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

org.opentripplanner.netex.mapping.calendar.OperatingDayMapper Maven / Gradle / Ivy

The newest version!
package org.opentripplanner.netex.mapping.calendar;

import java.time.LocalDate;
import org.rutebanken.netex.model.OperatingDay;

class OperatingDayMapper {

  /** Utility class, prevent instantiation. */
  private OperatingDayMapper() {}

  static LocalDate map(OperatingDay opDay) {
    return opDay.getCalendarDate().toLocalDate();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy