public static enum Geospatial.Type extends Enum<Geospatial.Type>
| Enum Constant and Description | 
|---|
| GEOSPATIALCOLLECTIONThe OGIS geometry type number for feature collections. | 
| LINESTRINGThe OGIS geometry type number for lines. | 
| MULTILINESTRINGThe OGIS geometry type number for aggregate lines. | 
| MULTIPOINTThe OGIS geometry type number for aggregate points. | 
| MULTIPOLYGONThe OGIS geometry type number for aggregate polygons. | 
| POINTThe OGIS geometry type number for points. | 
| POLYGONThe OGIS geometry type number for polygons. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Geospatial.Type | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Geospatial.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Geospatial.Type POINT
public static final Geospatial.Type LINESTRING
public static final Geospatial.Type POLYGON
public static final Geospatial.Type MULTIPOINT
public static final Geospatial.Type MULTILINESTRING
public static final Geospatial.Type MULTIPOLYGON
public static final Geospatial.Type GEOSPATIALCOLLECTION
public static Geospatial.Type[] values()
for (Geospatial.Type c : Geospatial.Type.values()) System.out.println(c);
public static Geospatial.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2013–2023 The Apache Software Foundation. All rights reserved.