/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2014, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.data.geojson.utils; import org.apache.sis.util.Static; /** * @author Quentin Boileau (Geomatys) */ public final class GeoJSONMembres extends Static { public static final String TYPE = "type"; public static final String FEATURES = "features"; public static final String GEOMETRY = "geometry"; public static final String GEOMETRIES = "geometries"; public static final String COORDINATES = "coordinates"; public static final String PROPERTIES = "properties"; public static final String CRS = "crs"; public static final String NAME = "name"; public static final String HREF = "href"; public static final String BBOX = "bbox"; public static final String ID = "id"; }