Class SortedSetDocValuesReaderState.OrdRange
Holds start/end range of ords, which maps to one dimension (someday we may generalize it to map to hierarchies within one dimension).
Inherited Members
Namespace: Lucene.Net.Facet.SortedSet
Assembly: Lucene.Net.Facet.dll
Syntax
public sealed class SortedSetDocValuesReaderState.OrdRange
Constructors
OrdRange(int, int)
Start and end are inclusive.
Declaration
public OrdRange(int start, int end)
Parameters
Type | Name | Description |
---|---|---|
int | start | |
int | end |
Properties
End
End of range, inclusive:
Declaration
public int End { get; }
Property Value
Type | Description |
---|---|
int |
Start
Start of range, inclusive:
Declaration
public int Start { get; }
Property Value
Type | Description |
---|---|
int |