com.alibaba.fastjson.support.geo.MultiLineString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson Show documentation
Show all versions of fastjson Show documentation
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java
The newest version!
package com.alibaba.fastjson.support.geo;
import com.alibaba.fastjson.annotation.JSONType;
/**
* @since 1.2.68
*/
@JSONType(typeName = "MultiLineString", orders = {"type", "bbox", "coordinates"})
public class MultiLineString
extends Geometry {
private double[][][] coordinates;
public MultiLineString() {
super("MultiLineString");
}
public double[][][] getCoordinates() {
return coordinates;
}
public void setCoordinates(double[][][] coordinates) {
this.coordinates = coordinates;
}
}