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

com.scaleset.geo.FeatureHandler Maven / Gradle / Ivy

The newest version!
package com.scaleset.geo;

import com.vividsolutions.jts.geom.Envelope;

public interface FeatureHandler {

    void begin() throws Exception;

    void end() throws Exception;

    void handle(Feature feature) throws Exception;

    void handle(Envelope bbox);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy