public static enum GeoshapeFieldArgs.CoordinateSystem extends Enum<GeoshapeFieldArgs.CoordinateSystem>
| Enum Constant and Description |
|---|
FLAT
Cartesian (planar) coordinates.
|
SPHERICAL
Spherical (geographical) coordinates.
|
| Modifier and Type | Method and Description |
|---|---|
static GeoshapeFieldArgs.CoordinateSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoshapeFieldArgs.CoordinateSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoshapeFieldArgs.CoordinateSystem FLAT
public static final GeoshapeFieldArgs.CoordinateSystem SPHERICAL
public static GeoshapeFieldArgs.CoordinateSystem[] values()
for (GeoshapeFieldArgs.CoordinateSystem c : GeoshapeFieldArgs.CoordinateSystem.values()) System.out.println(c);
public static GeoshapeFieldArgs.CoordinateSystem 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 © 2025 lettuce.io. All rights reserved.