Examples of IdFinderFilterVisitor


Examples of org.geotools.feature.visitor.IdFinderFilterVisitor

        assertNull( set2 );
    }

    public void testIdFinderFilterVisitor(){
        Filter filter = ff.isNull(ff.property("name"));
        boolean found = (Boolean) filter.accept( new IdFinderFilterVisitor(), null );
        assertFalse( found );
       
        filter = ff.id( Collections.singleton( ff.featureId("eclesia")));
        found = (Boolean) filter.accept( new IdFinderFilterVisitor(), null );
        assertTrue( found );       
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.