Class SortedSetDocValuesReaderState
Wraps a Lucene.
NOTE: creating an instance of this class is
somewhat costly, as it computes per-segment ordinal maps,
so you should create it once and re-use that one instance
for a given Lucene.
Inherited Members
Namespace: Lucene.Net.Facet.SortedSet
Assembly: Lucene.Net.Facet.dll
Syntax
public abstract class SortedSetDocValuesReaderState
Constructors
| Improve this Doc View SourceSortedSetDocValuesReaderState()
Sole constructor.
Declaration
protected SortedSetDocValuesReaderState()
Properties
| Improve this Doc View SourceCount
Number of unique labels.
Declaration
public abstract int Count { get; }
Property Value
Type | Description |
---|---|
System. |
Field
Indexed field we are reading.
Declaration
public abstract string Field { get; }
Property Value
Type | Description |
---|---|
System. |
OrigReader
Returns top-level index reader.
Declaration
public abstract IndexReader OrigReader { get; }
Property Value
Type | Description |
---|---|
Lucene. |
PrefixToOrdRange
Returns mapping from prefix to Sorted
Declaration
public abstract IDictionary<string, SortedSetDocValuesReaderState.OrdRange> PrefixToOrdRange { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceGetDocValues()
Return top-level doc values.
Declaration
public abstract SortedSetDocValues GetDocValues()
Returns
Type | Description |
---|---|
Lucene. |
GetOrdRange(String)
Returns the Sorted
Declaration
public abstract SortedSetDocValuesReaderState.OrdRange GetOrdRange(string dim)
Parameters
Type | Name | Description |
---|---|---|
System. |
dim |
Returns
Type | Description |
---|---|
Sorted |