Home
last modified time | relevance | path

Searched refs:GeometryCollection (Results 1 – 5 of 5) sorted by relevance

/external/geojson-jackson/src/test/java/org/geojson/jackson/
DGeometryCollectionTest.java15 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()
/external/geojson-jackson/src/main/java/org/geojson/
DGeometryCollection.java7 public class GeometryCollection extends GeoJsonObject implements Iterable<GeoJsonObject> { class
24 public GeometryCollection add(GeoJsonObject geometry) { in add()
38 if (!(o instanceof GeometryCollection)) in equals()
42 GeometryCollection that = (GeometryCollection)o; in equals()
DGeoJsonObjectVisitor.java11 T visit(GeometryCollection geoJsonObject); in visit()
39 public T visit(GeometryCollection geoJsonObject) { in visit()
DGeoJsonObject.java17 @Type(GeometryCollection.class) })
/external/geojson-jackson/src/test/java/org/geojson/
DGeoJsonObjectVisitorTest.java18 public GeoJsonObject visit(GeometryCollection geoJsonObject) {
19 Assert.assertEquals(GeometryCollection.class, geoJsonObject.getClass());
77 return Arrays.asList(new Object[][] { { new GeometryCollection() }, { new FeatureCollection() }, in data()