public static enum GeoJSONAnalyzerProperties.GeoJSONAnalyzerType extends Enum<GeoJSONAnalyzerProperties.GeoJSONAnalyzerType>
| Enum Constant and Description |
|---|
centroid
compute and only index the centroid of the input geometry
|
point
only index GeoJSON objects of type Point, ignore all other geometry types
|
shape
(default): index all GeoJSON geometry types (Point, Polygon etc.)
|
| Modifier and Type | Method and Description |
|---|---|
static GeoJSONAnalyzerProperties.GeoJSONAnalyzerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoJSONAnalyzerProperties.GeoJSONAnalyzerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoJSONAnalyzerProperties.GeoJSONAnalyzerType shape
public static final GeoJSONAnalyzerProperties.GeoJSONAnalyzerType centroid
public static final GeoJSONAnalyzerProperties.GeoJSONAnalyzerType point
public static GeoJSONAnalyzerProperties.GeoJSONAnalyzerType[] values()
for (GeoJSONAnalyzerProperties.GeoJSONAnalyzerType c : GeoJSONAnalyzerProperties.GeoJSONAnalyzerType.values()) System.out.println(c);
public static GeoJSONAnalyzerProperties.GeoJSONAnalyzerType 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.