Package org.apache.solr.search.facet
Class FieldUtil.OrdValues
- java.lang.Object
-
- org.apache.lucene.search.DocIdSetIterator
-
- org.apache.lucene.index.SortedDocValues
-
- org.apache.solr.search.facet.FieldUtil.OrdValues
-
- Direct Known Subclasses:
FieldUtil.DVOrdValues
,FieldUtil.FCOrdValues
- Enclosing class:
- FieldUtil
public abstract static class FieldUtil.OrdValues extends org.apache.lucene.index.SortedDocValues
-
-
Constructor Summary
Constructors Constructor Description OrdValues()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description int
advance(int target)
abstract boolean
advanceExact(int arg0)
long
cost()
int
docID()
int
getOrd()
int
getValueCount()
abstract int
nextDoc()
-
Methods inherited from class org.apache.lucene.index.SortedDocValues
intersect, lookupOrd, lookupTerm, ordValue, termsEnum
-
-
-
-
Method Detail
-
getOrd
public int getOrd()
-
docID
public int docID()
- Specified by:
docID
in classorg.apache.lucene.search.DocIdSetIterator
-
nextDoc
public abstract int nextDoc() throws IOException
- Specified by:
nextDoc
in classorg.apache.lucene.search.DocIdSetIterator
- Throws:
IOException
-
advance
public int advance(int target) throws IOException
- Specified by:
advance
in classorg.apache.lucene.search.DocIdSetIterator
- Throws:
IOException
-
cost
public long cost()
- Specified by:
cost
in classorg.apache.lucene.search.DocIdSetIterator
-
getValueCount
public int getValueCount()
- Specified by:
getValueCount
in classorg.apache.lucene.index.SortedDocValues
-
advanceExact
public abstract boolean advanceExact(int arg0) throws IOException
- Throws:
IOException
-
-