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
-
Nested Class Summary
Nested classes/interfaces inherited from class org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues
TextMultiValues.DocValuesTextMultiValues -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final org.apache.lucene.index.SortedSetDocValuesFields inherited from class org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues
EMPTY -
Method Summary
Modifier and TypeMethodDescriptionbooleanadvanceExact(int doc) Advance this instance to the given document idlongReturns the number of unique values.booleanlongnextOrd()protected final voidupdateRemaining(boolean hasDocValue) Methods inherited from class org.hibernate.search.backend.lucene.lowlevel.docvalues.impl.TextMultiValues
fromDocValues
-
Field Details
-
values
protected final org.apache.lucene.index.SortedSetDocValues values
-
-
Method Details
-
advanceExact
Description 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
-
updateRemaining
protected final void updateRemaining(boolean hasDocValue) -
hasNextValue
- 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
- 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.
-