Java org.apache.lucene.index SortedSetDocValues fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.index SortedSetDocValues fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.index SortedSetDocValues.

The text is from its open source code.

Subclass

org.apache.lucene.index.SortedSetDocValues has subclasses.
Click this link to see all its subclasses.

Field

longNO_MORE_ORDS
When returned by #nextOrd() it means there are no more ordinals for the document.

Constructor

SortedSetDocValues()
Sole constructor.

Method

longgetValueCount()
Returns the number of unique values.
BytesReflookupOrd(long ord)
Retrieves the value for the specified ordinal.
longlookupTerm(BytesRef key)
If key exists, returns its ordinal, else returns -insertionPoint-1 , like Arrays.binarySearch .
longnextOrd()
Returns the next ordinal for the current document.
TermsEnumtermsEnum()
Returns a TermsEnum over the values.