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

com.conveyal.gtfs.loader.TableLoadResult Maven / Gradle / Ivy

package com.conveyal.gtfs.loader;

import java.io.Serializable;

/**
 * An instance of this class is returned by the method that loads a single GTFS table.
 * It contains summary information about what happened while loading that one table.
 */
public class TableLoadResult implements Serializable {

    private static final long serialVersionUID = 1L;
    public int rowCount;
    public int errorCount;
    public String fatalException = null;

    /** No-arg constructor for Mongo */
    public TableLoadResult () { }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy