
org.opentripplanner.routing.linking.Scope 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.routing.linking;
public enum Scope {
/**
* Permanent changes to the street graph done during graph building.
*/
PERMANENT,
/**
* Temporary changes done to the street graph by updaters. These should be visible to routing
* requests, but not to each other.
*/
REALTIME,
/**
* Temporary changes made by a single routing request. These should only be visible to the same
* routing request.
*/
REQUEST,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy