Class TextMultiValues.DocValuesTextMultiValues
- java.lang.Object
-
- org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues
-
- org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues.DocValuesTextMultiValues
-
- Enclosing class:
- TextMultiValues
protected static class TextMultiValues.DocValuesTextMultiValues extends TextMultiValues
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues
TextMultiValues.DocValuesTextMultiValues
-
-
Field Summary
Fields Modifier and Type Field Description protected longnextOrdprotected org.apache.lucene.index.SortedSetDocValuesvalues-
Fields inherited from class org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues
EMPTY
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadvanceExact(int doc)Advance this instance to the given document idlonggetValueCount()Returns the number of unique values.booleanhasNextValue()longnextOrd()-
Methods inherited from class org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues
fromDocValues
-
-
-
-
Method Detail
-
advanceExact
public boolean advanceExact(int doc) throws IOExceptionDescription copied from class:TextMultiValuesAdvance this instance to the given document id- Specified by:
advanceExactin classTextMultiValues- Returns:
- true if there is a value for this document
- Throws:
IOException
-
hasNextValue
public boolean hasNextValue() throws IOException- Specified by:
hasNextValuein classTextMultiValues- Returns:
- true if there is a next value for this document, i.e. if nextValue() can be called.
- Throws:
IOException
-
nextOrd
public long nextOrd() throws IOException- Specified by:
nextOrdin classTextMultiValues- Returns:
- The next value for the current document.
Can only be called after
TextMultiValues.hasNextValue()returnedtrue. - Throws:
IOException
-
getValueCount
public long getValueCount()
Description copied from class:TextMultiValuesReturns the number of unique values.- Specified by:
getValueCountin classTextMultiValues- Returns:
- number of unique values in this SortedDocValues. This is also equivalent to one plus the maximum ordinal.
-
-