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

org.opentripplanner.routing.request.BannedStopSet Maven / Gradle / Ivy

package org.opentripplanner.routing.request;

import java.util.HashSet;

public class BannedStopSet extends HashSet {
    private static final long serialVersionUID = 3020705171076939160L;

    public static BannedStopSet ALL = new BannedStopSet();
    
    public boolean contains(Integer i) {
        if (this == ALL) 
            return true;
        return super.contains(i);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy