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

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

package com.conveyal.gtfs.loader;

import java.sql.PreparedStatement;

/**
 * Created by abyrd on 2017-04-04
 */
public abstract class SQLEntityFetcher implements Iterable {

    EntityPopulator entityPopulator;

    public SQLEntityFetcher (PreparedStatement fetchAllStatement, EntityPopulator entityPopulator) {
        this.entityPopulator = entityPopulator;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy