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

org.opentripplanner.graph_builder.services.shapefile.SimpleFeatureConverter Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy