Class MultiGeoPointValues
- java.lang.Object
-
- org.elasticsearch.index.fielddata.MultiGeoPointValues
-
public abstract class MultiGeoPointValues extends java.lang.ObjectA stateful lightweight per document set ofGeoPointvalues. To iterate over values in a document use the following pattern:GeoPointValues values = ..; values.setDocId(docId); final int numValues = values.count(); for (int i = 0; i < numValues; i++) { GeoPoint value = values.valueAt(i); // process value }The set of values associated with a document might contain duplicates and comes in a non-specified order.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedMultiGeoPointValues()Creates a newMultiGeoPointValuesinstance
-
Method Summary
Modifier and Type Method Description abstract booleanadvanceExact(int doc)Advance this instance to the given document idabstract intdocValueCount()Return the number of geo points the current document has.abstract GeoPointnextValue()Return the next value associated with the current document.
-
-
-
Constructor Detail
-
MultiGeoPointValues
protected MultiGeoPointValues()
Creates a newMultiGeoPointValuesinstance
-
-
Method Detail
-
advanceExact
public abstract boolean advanceExact(int doc) throws java.io.IOExceptionAdvance this instance to the given document id- Returns:
- true if there is a value for this document
- Throws:
java.io.IOException
-
docValueCount
public abstract int docValueCount()
Return the number of geo points the current document has.
-
nextValue
public abstract GeoPoint nextValue() throws java.io.IOException
Return the next value associated with the current document. This must not be called more thandocValueCount()times. Note: the returnedGeoPointmight be shared across invocations.- Returns:
- the next value for the current docID set to
advanceExact(int). - Throws:
java.io.IOException
-
-