org.opentripplanner.routing.services.notes.NoteMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.routing.services.notes;
import java.io.Serializable;
import org.opentripplanner.routing.core.State;
/**
* A note matcher will determine if a note is applicable to a given state, based on condition such
* as current traverse mode, wheelchair access, etc...
*
* @author laurent
*/
public interface NoteMatcher extends Serializable {
public boolean matches(State state);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy