net.anwiba.spatial.geo.json.v01_0.GeometryCollection Maven / Gradle / Ivy
//Copyright (c) 2012 by Andreas W. Bartels
package net.anwiba.spatial.geo.json.v01_0;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GeometryCollection
extends net.anwiba.spatial.geo.json.v01_0.Geometry
{
private final String type = "GeometryCollection";
private net.anwiba.spatial.geo.json.v01_0.Geometry[] geometries = null;
@JsonProperty("type")
public void setType(final String type) {
}
@JsonProperty("type")
public String getType() {
return this.type;
}
@JsonProperty("geometries")
public void setGeometries(final net.anwiba.spatial.geo.json.v01_0.Geometry[] geometries) {
this.geometries = geometries;
}
@JsonProperty("geometries")
public net.anwiba.spatial.geo.json.v01_0.Geometry[] getGeometries() {
return this.geometries;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy