
org.opentripplanner.transit.model.basic.Accessibility Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
package org.opentripplanner.transit.model.basic;
/**
* Use this class to describe if a feature is accessible {@code POSSIBLE}, not accessible
* {@code NOT_POSSIBLE} or if we do not know {@code NO_INFORMATION}.
*
* This can be used during routing to add extra cost or prune the search, depending on the
* user preferences.
*/
public enum Accessibility {
POSSIBLE,
NOT_POSSIBLE,
NO_INFORMATION,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy