public static enum CoordinateConverter.CoordType extends java.lang.Enum<CoordinateConverter.CoordType>
| Enum Constant and Description |
|---|
COMMON
google地图、soso地图、aliyun地图、mapabc地图和amap地图所用坐标
|
GPS
GPS设备采集的原始GPS坐标
|
| Modifier and Type | Method and Description |
|---|---|
static CoordinateConverter.CoordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CoordinateConverter.CoordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinateConverter.CoordType GPS
public static final CoordinateConverter.CoordType COMMON
public static CoordinateConverter.CoordType[] values()
for (CoordinateConverter.CoordType c : CoordinateConverter.CoordType.values()) System.out.println(c);
public static CoordinateConverter.CoordType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null