
com.graphhopper.routing.ev.HazmatWater Maven / Gradle / Ivy
package com.graphhopper.routing.ev;
/**
* Defines general restrictions for the transport of goods through water protection areas.
* If not tagged it will be {@link #YES}
*/
public enum HazmatWater {
YES("yes"), PERMISSIVE("permissive"), NO("no");
public static final String KEY = "hazmat_water";
private final String name;
HazmatWater(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy