org.opentripplanner.model.plan.RelativeDirection 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
package org.opentripplanner.model.plan;
/**
* Represents a turn direction, relative to the current heading.
*
* CIRCLE_CLOCKWISE and CIRCLE_CLOCKWISE are used to represent traffic circles.
*
*/
public enum RelativeDirection {
DEPART, HARD_LEFT, LEFT, SLIGHTLY_LEFT, CONTINUE, SLIGHTLY_RIGHT, RIGHT, HARD_RIGHT,
CIRCLE_CLOCKWISE, CIRCLE_COUNTERCLOCKWISE, ELEVATOR, UTURN_LEFT, UTURN_RIGHT;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy