Class ScriptDocValues.GeoPoints
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<T>
org.elasticsearch.index.fielddata.ScriptDocValues<T>
org.elasticsearch.index.fielddata.ScriptDocValues.Geometry<GeoPoint>
org.elasticsearch.index.fielddata.ScriptDocValues.GeoPoints
- Enclosing class:
- ScriptDocValues<T>
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.index.fielddata.ScriptDocValues
ScriptDocValues.Booleans, ScriptDocValues.BytesRefs, ScriptDocValues.Dates, ScriptDocValues.Doubles, ScriptDocValues.Geometry<T>, ScriptDocValues.GeoPoints, ScriptDocValues.Longs, ScriptDocValues.Strings
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondouble
arcDistance(double lat, double lon)
double
arcDistanceWithDefault(double lat, double lon, double defaultValue)
double
geohashDistance(String geohash)
double
geohashDistanceWithDefault(String geohash, double defaultValue)
get(int index)
Returns the bounding box of this geometryReturns the centroid of this geometryint
Returns the dimensional type of this geometrydouble
getLat()
double[]
getLats()
double
getLon()
double[]
getLons()
getValue()
double
planeDistance(double lat, double lon)
double
planeDistanceWithDefault(double lat, double lon, double defaultValue)
protected void
resize(int newSize)
Set thesize()
and ensure that thevalues
array can store at least that many entries.void
setNextDocId(int docId)
Set the current doc ID.int
size()
Methods inherited from class org.elasticsearch.index.fielddata.ScriptDocValues
add, remove, replaceAll, set, sort
Methods inherited from class java.util.AbstractList
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, subList
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.List
addAll, contains, containsAll, isEmpty, removeAll, retainAll, spliterator, toArray, toArray
-
Constructor Details
-
GeoPoints
-
-
Method Details
-
setNextDocId
Description copied from class:ScriptDocValues
Set the current doc ID.- Specified by:
setNextDocId
in classScriptDocValues<GeoPoint>
- Throws:
IOException
-
resize
protected void resize(int newSize)Set thesize()
and ensure that thevalues
array can store at least that many entries. -
getValue
-
getLat
public double getLat() -
getLats
public double[] getLats() -
getLons
public double[] getLons() -
getLon
public double getLon() -
get
-
size
public int size()- Specified by:
size
in interfaceCollection<GeoPoint>
- Specified by:
size
in interfaceList<GeoPoint>
- Specified by:
size
in classAbstractCollection<GeoPoint>
-
arcDistance
public double arcDistance(double lat, double lon) -
arcDistanceWithDefault
public double arcDistanceWithDefault(double lat, double lon, double defaultValue) -
planeDistance
public double planeDistance(double lat, double lon) -
planeDistanceWithDefault
public double planeDistanceWithDefault(double lat, double lon, double defaultValue) -
geohashDistance
-
geohashDistanceWithDefault
-
getDimensionalType
public int getDimensionalType()Description copied from class:ScriptDocValues.Geometry
Returns the dimensional type of this geometry- Specified by:
getDimensionalType
in classScriptDocValues.Geometry<GeoPoint>
-
getCentroid
Description copied from class:ScriptDocValues.Geometry
Returns the centroid of this geometry- Specified by:
getCentroid
in classScriptDocValues.Geometry<GeoPoint>
-
getBoundingBox
Description copied from class:ScriptDocValues.Geometry
Returns the bounding box of this geometry- Specified by:
getBoundingBox
in classScriptDocValues.Geometry<GeoPoint>
-