public static enum GeoShapeField.CoordinateSystem extends java.lang.Enum<GeoShapeField.CoordinateSystem>
| Enum Constant and Description |
|---|
FLAT
For cartesian (X,Y).
|
SPHERICAL
For geographic (lon, lat).
|
| Modifier and Type | Method and Description |
|---|---|
static GeoShapeField.CoordinateSystem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeoShapeField.CoordinateSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoShapeField.CoordinateSystem FLAT
public static final GeoShapeField.CoordinateSystem SPHERICAL
public static GeoShapeField.CoordinateSystem[] values()
for (GeoShapeField.CoordinateSystem c : GeoShapeField.CoordinateSystem.values()) System.out.println(c);
public static GeoShapeField.CoordinateSystem 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 nullCopyright © 2025. All rights reserved.