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).
Inheritance
System.Object
    SortedSetDocValuesReaderState.OrdRange
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: Lucene.Net.Facet.SortedSet
Assembly: Lucene.Net.Facet.dll
Syntax
public sealed class OrdRangeConstructors
| Improve this Doc View SourceOrdRange(Int32, Int32)
Start and end are inclusive.
Declaration
public OrdRange(int start, int end)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | start | |
| System.Int32 | end | 
Properties
| Improve this Doc View SourceEnd
End of range, inclusive:
Declaration
public int End { get; }Property Value
| Type | Description | 
|---|---|
| System.Int32 | 
Start
Start of range, inclusive:
Declaration
public int Start { get; }Property Value
| Type | Description | 
|---|---|
| System.Int32 |