Class ReaderSlice


  • public final class ReaderSlice
    extends java.lang.Object
    Subreader slice from a parent composite reader.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static ReaderSlice[] EMPTY_ARRAY
      Zero-length ReaderSlice array.
      int length
      Number of documents in this slice.
      int readerIndex
      Sub-reader index for this slice.
      int start
      Document ID this slice starts from.
    • Constructor Summary

      Constructors 
      Constructor Description
      ReaderSlice​(int start, int length, int readerIndex)
      Sole constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • EMPTY_ARRAY

        public static final ReaderSlice[] EMPTY_ARRAY
        Zero-length ReaderSlice array.
      • start

        public final int start
        Document ID this slice starts from.
      • length

        public final int length
        Number of documents in this slice.
      • readerIndex

        public final int readerIndex
        Sub-reader index for this slice.
    • Constructor Detail

      • ReaderSlice

        public ReaderSlice​(int start,
                           int length,
                           int readerIndex)
        Sole constructor.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object