Class SortedSetDocValuesReaderState.OrdRange

  • Enclosing class:
    SortedSetDocValuesReaderState

    public static final class SortedSetDocValuesReaderState.OrdRange
    extends java.lang.Object
    Holds start/end range of ords, which maps to one dimension (someday we may generalize it to map to hierarchies within one dimension).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int end
      End of range, inclusive:
      int start
      Start of range, inclusive:
    • Constructor Summary

      Constructors 
      Constructor Description
      OrdRange​(int start, int end)
      Start and end are inclusive.
    • Method Summary

      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • start

        public final int start
        Start of range, inclusive:
      • end

        public final int end
        End of range, inclusive:
    • Constructor Detail

      • OrdRange

        public OrdRange​(int start,
                        int end)
        Start and end are inclusive.