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 - 2025 Weber Informatics LLC | Privacy Policy