com.graphhopper.json.MinMax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphhopper-web-api Show documentation
Show all versions of graphhopper-web-api Show documentation
JSON Representation of the API classes
package com.graphhopper.json;
public class MinMax {
public double min;
public double max;
public MinMax(double min, double max) {
this.min = min;
this.max = max;
}
}