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

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

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

import org.opentripplanner.model.calendar.ServiceDate;
import org.rutebanken.netex.model.OperatingDay;

import javax.validation.constraints.NotNull;

class OperatingDayMapper {

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

  static ServiceDate map(@NotNull OperatingDay opDay) {
    return new ServiceDate(opDay.getCalendarDate().toLocalDate());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy