
org.opentripplanner.street.model.note.StreetNoteMatcher 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
The newest version!
package org.opentripplanner.street.model.note;
import java.io.Serializable;
import org.opentripplanner.street.search.state.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 StreetNoteMatcher extends Serializable {
boolean matches(State state);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy