Class MultiGeoPointValues

java.lang.Object
org.elasticsearch.index.fielddata.MultiPointValues<GeoPoint>
org.elasticsearch.index.fielddata.MultiGeoPointValues

public class MultiGeoPointValues extends MultiPointValues<GeoPoint>
A stateful lightweight per document set of GeoPoint values. To iterate over values in a document use the following pattern:
   MultiGeoPointValues values = ..;
   values.advanceExact(docId);
   final int numValues = values.docValueCount();
   for (int i = 0; i < numValues; i++) {
       GeoPoint value = values.nextValue();
       // process value
   }
 
The set of values associated with a document might contain duplicates and comes in a non-specified order.