Class AbstractNumericDocValues
- java.lang.Object
-
- org.apache.lucene.search.DocIdSetIterator
-
- org.apache.lucene.index.NumericDocValues
-
- org.elasticsearch.index.fielddata.AbstractNumericDocValues
-
public abstract class AbstractNumericDocValues extends org.apache.lucene.index.NumericDocValuesBase implementation that throws anIOExceptionfor theDocIdSetIteratorAPIs. This impl is safe to use for sorting and aggregations, which only useadvanceExact(int)andNumericDocValues.longValue().
-
-
Constructor Summary
Constructors Constructor Description AbstractNumericDocValues()
-
Method Summary
Modifier and Type Method Description intadvance(int target)abstract booleanadvanceExact(int arg0)longcost()intnextDoc()
-
-
-
Method Detail
-
nextDoc
public int nextDoc() throws java.io.IOException- Specified by:
nextDocin classorg.apache.lucene.search.DocIdSetIterator- Throws:
java.io.IOException
-
advance
public int advance(int target) throws java.io.IOException- Specified by:
advancein classorg.apache.lucene.search.DocIdSetIterator- Throws:
java.io.IOException
-
cost
public long cost()
- Specified by:
costin classorg.apache.lucene.search.DocIdSetIterator
-
advanceExact
public abstract boolean advanceExact(int arg0) throws java.io.IOException- Throws:
java.io.IOException
-
-