
com.graphhopper.routing.ev.BooleanEncodedValue Maven / Gradle / Ivy
package com.graphhopper.routing.ev;
import com.graphhopper.storage.IntsRef;
/**
* 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, IntsRef ref, boolean value);
boolean getBool(boolean reverse, IntsRef ref);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy