Searched refs:GeometryCollection (Results 1 – 5 of 5) sorted by relevance
15 GeometryCollection gc = new GeometryCollection(); in itShouldSerialize()26 GeometryCollection geometryCollection = mapper in itShouldDeserialize()30 GeometryCollection.class); in itShouldDeserialize()55 assertTrue(collection.getFeatures().get(0).getGeometry() instanceof GeometryCollection); in itShouldDeserializeSubtype()
7 public class GeometryCollection extends GeoJsonObject implements Iterable<GeoJsonObject> { class24 public GeometryCollection add(GeoJsonObject geometry) { in add()38 if (!(o instanceof GeometryCollection)) in equals()42 GeometryCollection that = (GeometryCollection)o; in equals()
11 T visit(GeometryCollection geoJsonObject); in visit()39 public T visit(GeometryCollection geoJsonObject) { in visit()
17 @Type(GeometryCollection.class) })
18 public GeoJsonObject visit(GeometryCollection geoJsonObject) {19 Assert.assertEquals(GeometryCollection.class, geoJsonObject.getClass());77 return Arrays.asList(new Object[][] { { new GeometryCollection() }, { new FeatureCollection() }, in data()