Class SortingCodecReader.SortingBits

java.lang.Object
org.apache.lucene.index.SortingCodecReader.SortingBits
All Implemented Interfaces:
Bits
Enclosing class:
SortingCodecReader

private static class SortingCodecReader.SortingBits extends Object implements Bits
  • Field Details

  • Constructor Details

  • Method Details

    • get

      public boolean get(int index)
      Description copied from interface: Bits
      Returns the value of the bit with the specified index.
      Specified by:
      get in interface Bits
      Parameters:
      index - index, should be non-negative and < Bits.length(). The result of passing negative or out of bounds values is undefined by this interface, just don't do it!
      Returns:
      true if the bit is set, false otherwise.
    • length

      public int length()
      Description copied from interface: Bits
      Returns the number of bits in this set
      Specified by:
      length in interface Bits