Searched refs:FeatureCollection (Results 1 – 7 of 7) sorted by relevance
8 public class FeatureCollection extends GeoJsonObject implements Iterable<Feature> { class20 public FeatureCollection add(Feature feature) { in add()43 if (!(o instanceof FeatureCollection)) in equals()45 FeatureCollection features1 = (FeatureCollection)o; in equals()
13 T visit(FeatureCollection geoJsonObject); in visit()44 public T visit(FeatureCollection geoJsonObject) { in visit()
15 …pe(Feature.class), @Type(Polygon.class), @Type(MultiPolygon.class), @Type(FeatureCollection.class),
14 FeatureCollection featureCollection = 15 new ObjectMapper().readValue(inputStream, FeatureCollection.class);41 FeatureCollection featureCollection = new FeatureCollection();
24 public GeoJsonObject visit(FeatureCollection geoJsonObject) {25 Assert.assertEquals(FeatureCollection.class, geoJsonObject.getClass());77 return Arrays.asList(new Object[][] { { new GeometryCollection() }, { new FeatureCollection() }, in data()
23 assertEquals("FeatureCollection{features=[]}", new FeatureCollection().toString()); in itShouldToStringFeatureCollection()
36 FeatureCollection collection = mapper in itShouldDeserializeSubtype()53 FeatureCollection.class); in itShouldDeserializeSubtype()