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

org.opentripplanner.graph_builder.issues.BikeRentalStationUnlinked Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.graph_builder.issues;

import org.opentripplanner.graph_builder.DataImportIssue;
import org.opentripplanner.routing.vertextype.BikeRentalStationVertex;

public class BikeRentalStationUnlinked implements DataImportIssue {

    public static final String FMT = "Bike rental station %s not near any streets; it will not be usable.";
    private static final String HTMLFMT = "Bike rental station \"%s\" not near any streets; it will not be usable.";
    
    final BikeRentalStationVertex station;
    
    public BikeRentalStationUnlinked(BikeRentalStationVertex station){
    	this.station = station;
    }

    @Override
    public String getHTMLMessage() {
        return String.format(HTMLFMT, station.getLat(), station.getLon(), station);
    }

    @Override
    public String getMessage() {
        return String.format(FMT, station);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy