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

com.alibaba.fastjson2.support.geo.GeometryCollection Maven / Gradle / Ivy

There is a newer version: 2.0.53
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy