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

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