Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 71E4D200B97 for ; Sun, 9 Oct 2016 17:12:53 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 705F7160AC3; Sun, 9 Oct 2016 15:12:53 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1E2A3160ADA for ; Sun, 9 Oct 2016 17:12:50 +0200 (CEST) Received: (qmail 92774 invoked by uid 500); 9 Oct 2016 15:12:44 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 89540 invoked by uid 99); 9 Oct 2016 15:12:42 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 09 Oct 2016 15:12:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0FCF0E0AD9; Sun, 9 Oct 2016 15:12:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: tedyu@apache.org To: commits@hbase.apache.org Date: Sun, 09 Oct 2016 15:13:20 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [42/52] [partial] hbase-site git commit: Published site at e06c3676f1273f033e3e185ee9c1ec52c1c7cb31. archived-at: Sun, 09 Oct 2016 15:12:53 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c7e84622/apidocs/org/apache/hadoop/hbase/filter/FilterList.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/filter/FilterList.html b/apidocs/org/apache/hadoop/hbase/filter/FilterList.html index 8a2aeb8..8bf8c8b 100644 --- a/apidocs/org/apache/hadoop/hbase/filter/FilterList.html +++ b/apidocs/org/apache/hadoop/hbase/filter/FilterList.html @@ -116,7 +116,7 @@ var activeTableTab = "activeTableTab";
@InterfaceAudience.Public
  @InterfaceStability.Stable
-public final class FilterList
+public final class FilterList
 extends Filter
Implementation of Filter that represents an ordered List of Filters which will be evaluated with a specified boolean operator FilterList.Operator.MUST_PASS_ALL @@ -386,7 +386,7 @@ extends
  • FilterList

    -
    public FilterList(List<Filter> rowFilters)
    +
    public FilterList(List<Filter> rowFilters)
    Constructor that takes a set of Filters. The default operator MUST_PASS_ALL is assumed.
    @@ -401,7 +401,7 @@ extends
  • FilterList

    -
    public FilterList(Filter... rowFilters)
    +
    public FilterList(Filter... rowFilters)
    Constructor that takes a var arg number of Filters. The fefault operator MUST_PASS_ALL is assumed.
    @@ -416,7 +416,7 @@ extends
  • FilterList

    -
    public FilterList(FilterList.Operator operator)
    +
    public FilterList(FilterList.Operator operator)
    Constructor that takes an operator.
    Parameters:
    @@ -430,7 +430,7 @@ extends
  • FilterList

    -
    public FilterList(FilterList.Operator operator,
    +
    public FilterList(FilterList.Operator operator,
                       List<Filter> rowFilters)
    Constructor that takes a set of Filters and an operator.
    @@ -446,7 +446,7 @@ extends
  • FilterList

    -
    public FilterList(FilterList.Operator operator,
    +
    public FilterList(FilterList.Operator operator,
                       Filter... rowFilters)
    Constructor that takes a var arg number of Filters and an operator.
    @@ -470,7 +470,7 @@ extends
  • getOperator

    -
    public FilterList.Operator getOperator()
    +
    public FilterList.Operator getOperator()
    Get the operator.
    Returns:
    @@ -484,7 +484,7 @@ extends
  • getFilters

    -
    public List<FiltergetFilters()
    +
    public List<FiltergetFilters()
    Get the filters.
    Returns:
    @@ -498,7 +498,7 @@ extends
  • addFilter

    -
    public void addFilter(Filter filter)
    +
    public void addFilter(Filter filter)
    Add a filter.
    Parameters:
    @@ -512,7 +512,7 @@ extends
  • reset

    -
    public void reset()
    +
    public void reset()
                throws IOException
    Description copied from class: Filter
    Reset the state of the filter between rows. @@ -533,7 +533,7 @@ extends
  • filterRowKey

    -
    public boolean filterRowKey(byte[] rowKey,
    +
    public boolean filterRowKey(byte[] rowKey,
                                 int offset,
                                 int length)
                          throws IOException
    @@ -563,7 +563,7 @@ extends
  • filterRowKey

    -
    public boolean filterRowKey(Cell firstRowCell)
    +
    public boolean filterRowKey(Cell firstRowCell)
                          throws IOException
    Description copied from class: Filter
    Filters a row based on the row key. If this returns true, the entire row will be excluded. If @@ -591,7 +591,7 @@ extends
  • filterAllRemaining

    -
    public boolean filterAllRemaining()
    +
    public boolean filterAllRemaining()
                                throws IOException
    Description copied from class: Filter
    If this returns true, the scan will terminate. @@ -614,7 +614,7 @@ extends
  • transformCell

    -
    public Cell transformCell(Cell c)
    +
    public Cell transformCell(Cell c)
                        throws IOException
    Description copied from class: Filter
    Give the filter a chance to transform the passed KeyValue. If the Cell is changed a new @@ -645,7 +645,7 @@ extends
  • filterKeyValue

    -
    public Filter.ReturnCode filterKeyValue(Cell c)
    +
    public Filter.ReturnCode filterKeyValue(Cell c)
                                      throws IOException
    Description copied from class: Filter
    A way to filter based on the column family, column qualifier and/or the column value. Return @@ -682,7 +682,7 @@ extends
  • filterRowCells

    -
    public void filterRowCells(List<Cell> cells)
    +
    public void filterRowCells(List<Cell> cells)
                         throws IOException
    Filters that never filter by modifying the returned List of Cells can inherit this implementation that does nothing. @@ -707,7 +707,7 @@ extends
  • hasFilterRow

    -
    public boolean hasFilterRow()
    +
    public boolean hasFilterRow()
    Description copied from class: Filter
    Primarily used to check for conflicts with scans(such as scans that do not read a full row at a time).
    @@ -725,7 +725,7 @@ extends
  • filterRow

    -
    public boolean filterRow()
    +
    public boolean filterRow()
                       throws IOException
    Description copied from class: Filter
    Last chance to veto row based on previous Filter.filterKeyValue(Cell) calls. The filter @@ -750,7 +750,7 @@ extends
  • toByteArray

    -
    public byte[] toByteArray()
    +
    public byte[] toByteArray()
                        throws IOException
    Description copied from class: Filter
    TODO: JAVADOC @@ -773,7 +773,7 @@ extends
  • parseFrom

    -
    public static FilterList parseFrom(byte[] pbBytes)
    +
    public static FilterList parseFrom(byte[] pbBytes)
                                 throws org.apache.hadoop.hbase.exceptions.DeserializationException
    Parameters:
    @@ -793,7 +793,7 @@ extends
  • getNextCellHint

    -
    public Cell getNextCellHint(Cell currentCell)
    +
    public Cell getNextCellHint(Cell currentCell)
                          throws IOException
    Description copied from class: Filter
    If the filter returns the match code SEEK_NEXT_USING_HINT, then it should also tell which is @@ -819,7 +819,7 @@ extends
  • isFamilyEssential

    -
    public boolean isFamilyEssential(byte[] name)
    +
    public boolean isFamilyEssential(byte[] name)
                               throws IOException
    Description copied from class: Filter
    Check that given column family is essential for filter to check row. Most filters always return @@ -843,7 +843,7 @@ extends
  • setReversed

    -
    public void setReversed(boolean reversed)
    +
    public void setReversed(boolean reversed)
    Description copied from class: Filter
    alter the reversed scan flag
    @@ -860,7 +860,7 @@ extends
  • toString

    -
    public String toString()
    +
    public String toString()
    Overrides:
    toString in class Object
    @@ -873,7 +873,7 @@ extends
  • toString

    -
    protected String toString(int maxFilters)
    +
    protected String toString(int maxFilters)
  • http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c7e84622/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html b/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html index 828378f..c21c6cc 100644 --- a/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html +++ b/apidocs/org/apache/hadoop/hbase/filter/InclusiveStopFilter.html @@ -411,7 +411,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
  • @@ -243,7 +243,7 @@ implements
  • RowRange

    -
    public RowRange(String startRow,
    +
    public RowRange(String startRow,
                     boolean startRowInclusive,
                     String stopRow,
                     boolean stopRowInclusive)
    @@ -258,7 +258,7 @@ implements
  • RowRange

    -
    public RowRange(byte[] startRow,
    +
    public RowRange(byte[] startRow,
                     boolean startRowInclusive,
                     byte[] stopRow,
                     boolean stopRowInclusive)
    @@ -278,7 +278,7 @@ implements
  • getStartRow

    -
    public byte[] getStartRow()
    +
    public byte[] getStartRow()
  • @@ -287,7 +287,7 @@ implements
  • getStopRow

    -
    public byte[] getStopRow()
    +
    public byte[] getStopRow()
  • @@ -296,7 +296,7 @@ implements
  • isStartRowInclusive

    -
    public boolean isStartRowInclusive()
    +
    public boolean isStartRowInclusive()
    Returns:
    if start row is inclusive.
    @@ -309,7 +309,7 @@ implements
  • isStopRowInclusive

    -
    public boolean isStopRowInclusive()
    +
    public boolean isStopRowInclusive()
    Returns:
    if stop row is inclusive.
    @@ -322,7 +322,7 @@ implements
  • contains

    -
    public boolean contains(byte[] row)
    +
    public boolean contains(byte[] row)
  • @@ -331,7 +331,7 @@ implements
  • contains

    -
    public boolean contains(byte[] buffer,
    +
    public boolean contains(byte[] buffer,
                             int offset,
                             int length)
  • @@ -342,7 +342,7 @@ implements
  • compareTo

    -
    public int compareTo(MultiRowRangeFilter.RowRange other)
    +
    public int compareTo(MultiRowRangeFilter.RowRange other)
    Specified by:
    compareTo in interface Comparable<MultiRowRangeFilter.RowRange>
    @@ -355,7 +355,7 @@ implements
  • isValid

    -
    public boolean isValid()
    +
    public boolean isValid()
  • http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c7e84622/apidocs/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.html b/apidocs/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.html index df6019b..2d44c0e 100644 --- a/apidocs/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.html +++ b/apidocs/org/apache/hadoop/hbase/filter/MultiRowRangeFilter.html @@ -121,7 +121,7 @@ var activeTableTab = "activeTableTab";
    @InterfaceAudience.Public
      @InterfaceStability.Evolving
    -public class MultiRowRangeFilter
    +public class MultiRowRangeFilter
     extends org.apache.hadoop.hbase.filter.FilterBase
    Filter to support scan multiple row key ranges. It can construct the row key ranges from the passed list which can be accessed by each region server. @@ -300,7 +300,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
  • @@ -357,7 +357,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
    • filterKeyValue

      -
      public Filter.ReturnCode filterKeyValue(Cell ignored)
      +
      public Filter.ReturnCode filterKeyValue(Cell ignored)
      Description copied from class: Filter
      A way to filter based on the column family, column qualifier and/or the column value. Return code is described below. This allows filters to filter only certain number of columns, then @@ -416,7 +416,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
    • getNextCellHint

      -
      public Cell getNextCellHint(Cell currentKV)
      +
      public Cell getNextCellHint(Cell currentKV)
      Description copied from class: org.apache.hadoop.hbase.filter.FilterBase
      Filters that are not sure which key must be next seeked to, can inherit this implementation that, by default, returns a null Cell. @@ -442,7 +442,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
    • toByteArray

      -
      public byte[] toByteArray()
      +
      public byte[] toByteArray()
      Description copied from class: org.apache.hadoop.hbase.filter.FilterBase
      Return length 0 byte array for Filters that don't require special serialization
      @@ -459,7 +459,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
    • parseFrom

      -
      public static MultiRowRangeFilter parseFrom(byte[] pbBytes)
      +
      public static MultiRowRangeFilter parseFrom(byte[] pbBytes)
                                            throws org.apache.hadoop.hbase.exceptions.DeserializationException
      Parameters:
      @@ -477,7 +477,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
      • sortAndMerge

        -
        public static List<MultiRowRangeFilter.RowRangesortAndMerge(List<MultiRowRangeFilter.RowRange> ranges)
        +
        public static List<MultiRowRangeFilter.RowRangesortAndMerge(List<MultiRowRangeFilter.RowRange> ranges)
        sort the ranges and if the ranges with overlap, then merge them.
        Parameters:
        http://git-wip-us.apache.org/repos/asf/hbase-site/blob/c7e84622/apidocs/org/apache/hadoop/hbase/filter/MultipleColumnPrefixFilter.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/filter/MultipleColumnPrefixFilter.html b/apidocs/org/apache/hadoop/hbase/filter/MultipleColumnPrefixFilter.html index 3a2c5fb..3db4685 100644 --- a/apidocs/org/apache/hadoop/hbase/filter/MultipleColumnPrefixFilter.html +++ b/apidocs/org/apache/hadoop/hbase/filter/MultipleColumnPrefixFilter.html @@ -121,7 +121,7 @@ var activeTableTab = "activeTableTab";
        @InterfaceAudience.Public
          @InterfaceStability.Stable
        -public class MultipleColumnPrefixFilter
        +public class MultipleColumnPrefixFilter
         extends org.apache.hadoop.hbase.filter.FilterBase
        This filter is used for selecting only those keys with columns that matches a particular prefix. For example, if prefix is 'an', it will pass keys will @@ -303,7 +303,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
    • hint

      -
      protected byte[] hint
      +
      protected byte[] hint
    @@ -312,7 +312,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
  • @@ -329,7 +329,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
  • @@ -346,7 +346,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
    @@ -355,7 +355,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
  • @@ -426,7 +426,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
  • @@ -435,7 +435,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase