Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class ValidateAllowedTransportMode extends ValidateNotExist {
"water",
"cableway",
"funicular",
"snowAndIce",
"unknown"
) +
"'";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import static org.rutebanken.netex.model.FunicularSubmodeEnumeration.*;
import static org.rutebanken.netex.model.MetroSubmodeEnumeration.*;
import static org.rutebanken.netex.model.RailSubmodeEnumeration.*;
import static org.rutebanken.netex.model.SnowAndIceSubmodeEnumeration.SNOW_COACH;
import static org.rutebanken.netex.model.TaxiSubmodeEnumeration.*;
import static org.rutebanken.netex.model.TelecabinSubmodeEnumeration.*;
import static org.rutebanken.netex.model.TramSubmodeEnumeration.*;
Expand All @@ -27,7 +28,7 @@ public class ValidateAllowedTransportSubMode extends ValidateNotExist {
INTERNATIONAL_COACH.value(),
NATIONAL_COACH.value(),
TOURIST_COACH.value(),
SHUTTLE_COACH.value(),
SNOW_COACH.value(),
// Tram
LOCAL_TRAM.value(),
CITY_TRAM.value(),
Expand Down Expand Up @@ -73,6 +74,7 @@ public class ValidateAllowedTransportSubMode extends ValidateNotExist {
// Taxi
CHARTER_TAXI.value(),
COMMUNAL_TAXI.value(),
WATER_TAXI.value(),
// All
"unknown"
) +
Expand Down