net.anwiba.spatial.geo.json.v01_0.MultiLineString Maven / Gradle / Ivy
//Copyright (c) 2012 by Andreas W. Bartels ([email protected])
package net.anwiba.spatial.geo.json.v01_0;
import com.fasterxml.jackson.annotation.JsonProperty;
public class MultiLineString
extends Geometry
{
private final String type = "MultiLineString";
private double[][][] coordinates = null;
@JsonProperty("type")
public void setType(final String type) {
}
@JsonProperty("type")
public String getType() {
return this.type;
}
@JsonProperty("coordinates")
public void setCoordinates(final double[][][] coordinates) {
this.coordinates = coordinates;
}
@JsonProperty("coordinates")
public double[][][] getCoordinates() {
return this.coordinates;
}
}