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

org.opentripplanner.api.mapping.BikeAccessMapper Maven / Gradle / Ivy

package org.opentripplanner.api.mapping;

import org.opentripplanner.transit.model.network.BikeAccess;

public class BikeAccessMapper {

  public static int mapToApi(BikeAccess bikeAccess) {
    if (bikeAccess == null) {
      return 0;
    }
    return switch (bikeAccess) {
      case ALLOWED -> 1;
      case NOT_ALLOWED -> 2;
      default -> 0;
    };
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy