com.conveyal.gtfs.validator.FeedValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gtfs-lib Show documentation
Show all versions of gtfs-lib Show documentation
A library to load and index GTFS feeds of arbitrary size using disk-backed storage
package com.conveyal.gtfs.validator;
import com.conveyal.gtfs.error.SQLErrorStorage;
import com.conveyal.gtfs.loader.Feed;
/**
* A subtype of validator that can validate the entire feed at once.
*/
public abstract class FeedValidator extends Validator {
public FeedValidator (Feed feed, SQLErrorStorage errorStorage) {
super(feed, errorStorage);
}
/** The main extension point. Each subsclass must define this method. */
public abstract void validate ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy