Package org.apache.lucene.index
Class SortedSetDocValues
java.lang.Object
org.apache.lucene.index.SortedSetDocValues
- Direct Known Subclasses:
MultiDocValues.MultiSortedSetDocValues
,SingletonSortedSetDocValues
A per-document set of presorted byte[] values.
Per-Document values in a SortedDocValues are deduplicated, dereferenced, and sorted into a dictionary of unique values. A pointer to the dictionary value (ordinal) can be retrieved for each document. Ordinals are dense and in increasing sorted order.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SortedSetDocValues
An empty SortedDocValues which returnsNO_MORE_ORDS
for every documentstatic final long
When returned bynextOrd()
it means there are no more ordinals for the document. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract long
Returns the number of unique values.abstract void
Retrieves the value for the specified ordinal.long
lookupTerm
(BytesRef key) Ifkey
exists, returns its ordinal, else returns-insertionPoint-1
, likeArrays.binarySearch
.abstract long
nextOrd()
Returns the next ordinal for the current document (previously set bysetDocument(int)
.abstract void
setDocument
(int docID) Sets iteration to the specified docIDReturns aTermsEnum
over the values.
-
Field Details
-
NO_MORE_ORDS
public static final long NO_MORE_ORDSWhen returned bynextOrd()
it means there are no more ordinals for the document.- See Also:
-
EMPTY
An empty SortedDocValues which returnsNO_MORE_ORDS
for every document
-
-
Constructor Details
-
SortedSetDocValues
protected SortedSetDocValues()Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Details
-
nextOrd
public abstract long nextOrd()Returns the next ordinal for the current document (previously set bysetDocument(int)
.- Returns:
- next ordinal for the document, or
NO_MORE_ORDS
. ordinals are dense, start at 0, then increment by 1 for the next value in sorted order.
-
setDocument
public abstract void setDocument(int docID) Sets iteration to the specified docID- Parameters:
docID
- document ID
-
lookupOrd
Retrieves the value for the specified ordinal.- Parameters:
ord
- ordinal to lookupresult
- will be populated with the ordinal's value- See Also:
-
getValueCount
public abstract long getValueCount()Returns the number of unique values.- Returns:
- number of unique values in this SortedDocValues. This is also equivalent to one plus the maximum ordinal.
-
lookupTerm
Ifkey
exists, returns its ordinal, else returns-insertionPoint-1
, likeArrays.binarySearch
.- Parameters:
key
- Key to look up
-
termsEnum
Returns aTermsEnum
over the values. The enum supportsTermsEnum.ord()
andTermsEnum.seekExact(long)
.
-