com.graphhopper.routing.ev.BooleanEncodedValue 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.ev;
/**
* This interface defines access to an edge property of type boolean. The default value is false.
*/
public interface BooleanEncodedValue extends EncodedValue {
void setBool(boolean reverse, int edgeId, EdgeIntAccess edgeIntAccess, boolean value);
boolean getBool(boolean reverse, int edgeId, EdgeIntAccess edgeIntAccess);
}