Class GeoPointScriptDocValues
java.lang.Object
org.elasticsearch.index.fielddata.MultiGeoPointValues
org.elasticsearch.index.fielddata.GeoPointScriptDocValues
-
Method Summary
Modifier and TypeMethodDescriptionboolean
advanceExact(int docId)
Advance this instance to the given document idint
Return the number of geo points the current document has.Return the next value associated with the current document.
-
Method Details
-
advanceExact
public boolean advanceExact(int docId)Description copied from class:MultiGeoPointValues
Advance this instance to the given document id- Specified by:
advanceExact
in classMultiGeoPointValues
- Returns:
- true if there is a value for this document
-
docValueCount
public int docValueCount()Description copied from class:MultiGeoPointValues
Return the number of geo points the current document has.- Specified by:
docValueCount
in classMultiGeoPointValues
-
nextValue
Description copied from class:MultiGeoPointValues
Return the next value associated with the current document. This must not be called more thanMultiGeoPointValues.docValueCount()
times. Note: the returnedGeoPoint
might be shared across invocations.- Specified by:
nextValue
in classMultiGeoPointValues
- Returns:
- the next value for the current docID set to
MultiGeoPointValues.advanceExact(int)
.
-