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
Constructors - 
Method Summary
Modifier and TypeMethodDescriptiondoublearcDistance(double lat, double lon)doublearcDistanceWithDefault(double lat, double lon, double defaultValue)doublegeohashDistance(String geohash)doublegeohashDistanceWithDefault(String geohash, double defaultValue)get(int index)Returns the bounding box of this geometryReturns the centroid of this geometryintReturns the dimensional type of this geometrydoublegetLat()double[]getLats()doublegetLon()double[]getLons()getValue()doubleplaneDistance(double lat, double lon)doubleplaneDistanceWithDefault(double lat, double lon, double defaultValue)protected voidresize(int newSize)Set thesize()and ensure that thevaluesarray can store at least that many entries.voidsetNextDocId(int docId)Set the current doc ID.intsize()Methods inherited from class org.elasticsearch.index.fielddata.ScriptDocValues
add, remove, replaceAll, set, sortMethods inherited from class java.util.AbstractList
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, subListMethods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, removeAll, retainAll, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods 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:ScriptDocValuesSet the current doc ID.- Specified by:
 setNextDocIdin classScriptDocValues<GeoPoint>- Throws:
 IOException
 - 
resize
protected void resize(int newSize)Set thesize()and ensure that thevaluesarray 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:
 sizein interfaceCollection<GeoPoint>- Specified by:
 sizein interfaceList<GeoPoint>- Specified by:
 sizein 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.GeometryReturns the dimensional type of this geometry- Specified by:
 getDimensionalTypein classScriptDocValues.Geometry<GeoPoint>
 - 
getCentroid
Description copied from class:ScriptDocValues.GeometryReturns the centroid of this geometry- Specified by:
 getCentroidin classScriptDocValues.Geometry<GeoPoint>
 - 
getBoundingBox
Description copied from class:ScriptDocValues.GeometryReturns the bounding box of this geometry- Specified by:
 getBoundingBoxin classScriptDocValues.Geometry<GeoPoint>
 
 -