com.alibaba.fastjson2.support.geo.GeometryCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson2-extension Show documentation
Show all versions of fastjson2-extension Show documentation
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java
package com.alibaba.fastjson2.support.geo;
import com.alibaba.fastjson2.annotation.JSONType;
import java.util.ArrayList;
import java.util.List;
/**
* @since 1.2.68
*/
@JSONType(typeName = "GeometryCollection", orders = {"type", "bbox", "geometries"})
public class GeometryCollection
extends Geometry {
private List geometries = new ArrayList();
public GeometryCollection() {
super("GeometryCollection");
}
public List getGeometries() {
return geometries;
}
}