mirror of
https://github.com/opentripplanner/OpenTripPlanner.git
synced 2026-04-03 15:26:08 +02:00
13 lines
250 B
Java
13 lines
250 B
Java
package org.opentripplanner.model.plan;
|
|
|
|
/**
|
|
* Represent type of vertex, used in Place aka from, to in API for easier client side localization
|
|
*
|
|
* @author mabu
|
|
*/
|
|
public enum VertexType {
|
|
NORMAL,
|
|
VEHICLERENTAL,
|
|
VEHICLEPARKING,
|
|
TRANSIT,
|
|
}
|