All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anwiba.spatial.topo.json.v01_0.Polygon Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy