net.anwiba.spatial.topo.json.v01_0.Polygon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anwiba-spatial-data-topo-json Show documentation
Show all versions of anwiba-spatial-data-topo-json Show documentation
anwiba spatial topo json io project
The newest version!
//Copyright (c) 2017 by Andreas W. Bartels
package net.anwiba.spatial.topo.json.v01_0;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Polygon
extends Geometry
{
private final String type = "Polygon";
private int[][] arcs = null;
@JsonProperty("type")
public void setType(final String type) {
}
@JsonProperty("type")
public String getType() {
return this.type;
}
@JsonProperty("arcs")
public void setArcs(final int[][] arcs) {
this.arcs = arcs;
}
@JsonProperty("arcs")
public int[][] getArcs() {
return this.arcs;
}
}