com.evrythng.thng.resource.model.store.geojson.GeoJsonPolygon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
package com.evrythng.thng.resource.model.store.geojson;
import java.util.List;
public abstract class GeoJsonPolygon extends GeoJson {
private static final long serialVersionUID = 6352106353615096344L;
private List> coordinates;
protected GeoJsonPolygon() {
super(GeoJsonType.POLYGON);
}
public List> getCoordinates() {
return coordinates;
}
public void setCoordinates(final List> coordinates) {
this.coordinates = coordinates;
}
@Override
public String toString() {
return "GeoJsonPolygon [coordinates=" + coordinates + ", getGeoJsonType()=" + getGeoJsonType() + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy