public static enum GeoUtils.PointType extends Enum<GeoUtils.PointType>
| Modifier and Type | Method and Description |
|---|---|
static GeoUtils.PointType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoUtils.PointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoUtils.PointType WGS84
public static final GeoUtils.PointType GCJ02
public static final GeoUtils.PointType BD09
public static GeoUtils.PointType[] values()
for (GeoUtils.PointType c : GeoUtils.PointType.values()) System.out.println(c);
public static GeoUtils.PointType 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 © 2019. All rights reserved.