Class MultiRowRangeFilter.BasicRowRange

java.lang.Object
org.apache.hadoop.hbase.filter.MultiRowRangeFilter.BasicRowRange
All Implemented Interfaces:
Comparable<MultiRowRangeFilter.BasicRowRange>
Direct Known Subclasses:
MultiRowRangeFilter.ReversedRowRange, MultiRowRangeFilter.RowRange
Enclosing class:
MultiRowRangeFilter

  • Field Details

  • Constructor Details

    • BasicRowRange

      public BasicRowRange()
    • BasicRowRange

      public BasicRowRange(String startRow, boolean startRowInclusive, String stopRow, boolean stopRowInclusive)
      If the startRow is empty or null, set it to HConstants.EMPTY_BYTE_ARRAY, means begin at the start row of the table. If the stopRow is empty or null, set it to HConstants.EMPTY_BYTE_ARRAY, means end of the last row of table.
    • BasicRowRange

      public BasicRowRange(byte[] startRow, boolean startRowInclusive, byte[] stopRow, boolean stopRowInclusive)
  • Method Details