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

org.opentripplanner.routing.services.notes.NoteMatcher Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy