public enum PolygonFormat extends Enum<PolygonFormat>
| Enum Constant and Description |
|---|
GEO_JSON
Output geometry of results in geojson format.
|
KML
Output geometry of results in kml format.
|
NONE
No polygons.
|
SVG
Output geometry of results in svg format.
|
TEXT
Output geometry of results as a WKT.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PolygonFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PolygonFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PolygonFormat NONE
public static final PolygonFormat GEO_JSON
public static final PolygonFormat KML
public static final PolygonFormat SVG
public static final PolygonFormat TEXT
public static PolygonFormat[] values()
for (PolygonFormat c : PolygonFormat.values()) System.out.println(c);
public static PolygonFormat 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 nullpublic String toString()
toString in class Enum<PolygonFormat>Copyright © 2010–2019 Dudie. All rights reserved.