All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.graphhopper.routing.ev.Hazmat Maven / Gradle / Ivy

Go to download

GraphHopper is a fast and memory efficient Java road routing engine working seamlessly with OpenStreetMap data.

There is a newer version: 10.0
Show newest version
package com.graphhopper.routing.ev;

import com.graphhopper.util.Helper;

/**
 * Defines general restrictions for the transport of hazardous materials.
* If not tagged it will be {@link #YES} */ public enum Hazmat { YES, NO; public static final String KEY = "hazmat"; public static EnumEncodedValue create() { return new EnumEncodedValue<>(KEY, Hazmat.class); } @Override public String toString() { return Helper.toLowerCase(super.toString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy