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

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

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.routing.api.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