Class ScriptDocValues.GeoPoints
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<T>
org.elasticsearch.index.fielddata.ScriptDocValues<GeoPoint>
org.elasticsearch.index.fielddata.ScriptDocValues.GeoPoints
- All Implemented Interfaces:
java.lang.Iterable<GeoPoint>,java.util.Collection<GeoPoint>,java.util.List<GeoPoint>
- Enclosing class:
- ScriptDocValues<T>
public static final class ScriptDocValues.GeoPoints extends ScriptDocValues<GeoPoint>
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.index.fielddata.ScriptDocValues
ScriptDocValues.Booleans, ScriptDocValues.BytesRefs, ScriptDocValues.Dates, ScriptDocValues.Doubles, ScriptDocValues.GeoPoints, ScriptDocValues.Longs, ScriptDocValues.Strings -
Field Summary
-
Constructor Summary
Constructors Constructor Description GeoPoints(MultiGeoPointValues in) -
Method Summary
Modifier and Type Method Description doublearcDistance(double lat, double lon)doublearcDistanceWithDefault(double lat, double lon, double defaultValue)doublegeohashDistance(java.lang.String geohash)doublegeohashDistanceWithDefault(java.lang.String geohash, double defaultValue)GeoPointget(int index)doublegetLat()double[]getLats()doublegetLon()double[]getLons()GeoPointgetValue()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, toString
-
Constructor Details
-
Method Details
-
setNextDocId
public void setNextDocId(int docId) throws java.io.IOExceptionDescription copied from class:ScriptDocValuesSet the current doc ID.- Specified by:
setNextDocIdin classScriptDocValues<GeoPoint>- Throws:
java.io.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() -
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
public double geohashDistance(java.lang.String geohash) -
geohashDistanceWithDefault
public double geohashDistanceWithDefault(java.lang.String geohash, double defaultValue)
-