Skip to content

Commit

Permalink
add missing leg modes
Browse files Browse the repository at this point in the history
added all the missing modes from the official graphql schema
  • Loading branch information
danielhep committed Jan 3, 2025
1 parent da57e60 commit 146a839
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/java/org/opentripplanner/client/model/LegMode.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,15 @@ public enum LegMode {
CARPOOL,
BICYCLE,
SCOOTER,
CAR;
CAR,
TAXI,
CABLE_CAR,
AIRPLANE,
COACH,
FUNICULAR,
FLEX,
GONDOLA,
TROLLEYBUS;

private static final Set<LegMode> NON_TRANSIT_MODES = EnumSet.of(CAR, SCOOTER, BICYCLE, WALK);

Expand Down

0 comments on commit 146a839

Please sign in to comment.