public static enum GeoS2AnalyzerProperties.GeoS2Format extends Enum<GeoS2AnalyzerProperties.GeoS2Format>
Enum Constant and Description |
---|
latLngDouble
Store each latitude and longitude value as an 8-byte floating-point value (16 bytes per coordinate pair).
|
latLngInt
Store each latitude and longitude value as an 4-byte integer value (8 bytes per coordinate pair).
|
s2Point
Store each longitude-latitude pair in the native format of Google S2 which is used for geo-spatial
calculations (24 bytes per coordinate pair).
|
Modifier and Type | Method and Description |
---|---|
static GeoS2AnalyzerProperties.GeoS2Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoS2AnalyzerProperties.GeoS2Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoS2AnalyzerProperties.GeoS2Format latLngDouble
GeoJSONAnalyzer
. (default)public static final GeoS2AnalyzerProperties.GeoS2Format latLngInt
public static final GeoS2AnalyzerProperties.GeoS2Format s2Point
public static GeoS2AnalyzerProperties.GeoS2Format[] values()
for (GeoS2AnalyzerProperties.GeoS2Format c : GeoS2AnalyzerProperties.GeoS2Format.values()) System.out.println(c);
public static GeoS2AnalyzerProperties.GeoS2Format 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 © 2016–2023 ArangoDB GmbH. All rights reserved.