com.graphhopper.routing.weighting.custom.ParseResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphhopper-core Show documentation
Show all versions of graphhopper-core Show documentation
GraphHopper is a fast and memory efficient Java road routing engine
working seamlessly with OpenStreetMap data.
package com.graphhopper.routing.weighting.custom;
import java.util.Set;
class ParseResult {
StringBuilder converted;
boolean ok;
String invalidMessage;
Set guessedVariables;
Set operators;
}