org.opentripplanner.graph_builder.services.shapefile.SimpleFeatureConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.graph_builder.services.shapefile;
import org.opengis.feature.simple.SimpleFeature;
/**
* Interface for converters from an opengis @{link org.opengis.feature.simple.SimpleFeature}
* to an object of type T
*
* @param the type to convert to.
*/
public interface SimpleFeatureConverter {
public T convert(SimpleFeature feature);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy