Class GeoPointAnalyzerProperties
- java.lang.Object
-
- com.arangodb.entity.arangosearch.analyzer.GeoPointAnalyzerProperties
-
public final class GeoPointAnalyzerProperties extends Object
- Author:
- Michele Rastelli
-
-
Constructor Summary
Constructors Constructor Description GeoPointAnalyzerProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String[]
getLatitude()
String[]
getLongitude()
GeoAnalyzerOptions
getOptions()
int
hashCode()
void
setLatitude(String[] latitude)
void
setLongitude(String[] longitude)
void
setOptions(GeoAnalyzerOptions options)
-
-
-
Method Detail
-
getLatitude
public String[] getLatitude()
- Returns:
- array of strings that describes the attribute path of the latitude value relative to the field for which the Analyzer is defined in the View
-
setLatitude
public void setLatitude(String[] latitude)
-
getLongitude
public String[] getLongitude()
- Returns:
- array of strings that describes the attribute path of the longitude value relative to the field for which the Analyzer is defined in the View
-
setLongitude
public void setLongitude(String[] longitude)
-
getOptions
public GeoAnalyzerOptions getOptions()
- Returns:
- Options for fine-tuning geo queries
GeoPointAnalyzerProperties
. These options should generally remain unchanged.
-
setOptions
public void setOptions(GeoAnalyzerOptions options)
-
-