public abstract class AbstractFeatureVisitor extends Object implements FeatureVisitor
This class is best used when making anonymous inner classes:
features.accepts(new AbstractFeatureVisitor(){
public void visit( org.opengis.feature.Feature feature ) {
bounds.include(feature.getBounds());
}
}, null);
Copyright © 1996–2019 Geotools. All rights reserved.