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

org.opentripplanner.ext.examples.statistics.api.model.GraphStatistics Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.ext.examples.statistics.api.model;

import org.opentripplanner.routing.RoutingService;

/**
 * Simple POJO to define the returned 'key numbers'.
 */
public class GraphStatistics {
    private int stops;


    GraphStatistics(RoutingService index) {
        this.stops = index.getAllStops().size();
    }

    /**
     * The number of stops in the graph.
     */
    public int getStops() {
        return stops;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy