
org.opentripplanner.transit.model.network.BikeAccess Maven / Gradle / Ivy
The newest version!
package org.opentripplanner.transit.model.network;
/**
* This represents the state of whether bikes are allowed on board trips (or routes).
*
* GTFS codes:
* 0 = unknown / unspecified, 1 = bikes allowed, 2 = bikes NOT allowed
*/
public enum BikeAccess {
UNKNOWN,
NOT_ALLOWED,
ALLOWED,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy