public enum GeoType extends Enum<GeoType>
| Enum Constant and Description |
|---|
BOUNDING_BOX
矩形类型
|
DISTANCE
中心点,半径类型
|
POLYGON
多边形类型
|
| Modifier and Type | Method and Description |
|---|---|
static GeoType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoType DISTANCE
public static final GeoType BOUNDING_BOX
public static final GeoType POLYGON
public static GeoType[] values()
for (GeoType c : GeoType.values()) System.out.println(c);
public static GeoType 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 © 2024. All Rights Reserved.