Home
last modified time | relevance | path

Searched refs:FeatureCollection (Results 1 – 7 of 7) sorted by relevance

/external/geojson-jackson/src/main/java/org/geojson/
DFeatureCollection.java8 public class FeatureCollection extends GeoJsonObject implements Iterable<Feature> { class
20 public FeatureCollection add(Feature feature) { in add()
43 if (!(o instanceof FeatureCollection)) in equals()
45 FeatureCollection features1 = (FeatureCollection)o; in equals()
DGeoJsonObjectVisitor.java13 T visit(FeatureCollection geoJsonObject); in visit()
44 public T visit(FeatureCollection geoJsonObject) { in visit()
DGeoJsonObject.java15 …pe(Feature.class), @Type(Polygon.class), @Type(MultiPolygon.class), @Type(FeatureCollection.class),
/external/geojson-jackson/
DREADME.md14 FeatureCollection featureCollection =
15 new ObjectMapper().readValue(inputStream, FeatureCollection.class);
41 FeatureCollection featureCollection = new FeatureCollection();
/external/geojson-jackson/src/test/java/org/geojson/
DGeoJsonObjectVisitorTest.java24 public GeoJsonObject visit(FeatureCollection geoJsonObject) {
25 Assert.assertEquals(FeatureCollection.class, geoJsonObject.getClass());
77 return Arrays.asList(new Object[][] { { new GeometryCollection() }, { new FeatureCollection() }, in data()
DToStringTest.java23 assertEquals("FeatureCollection{features=[]}", new FeatureCollection().toString()); in itShouldToStringFeatureCollection()
/external/geojson-jackson/src/test/java/org/geojson/jackson/
DGeometryCollectionTest.java36 FeatureCollection collection = mapper in itShouldDeserializeSubtype()
53 FeatureCollection.class); in itShouldDeserializeSubtype()