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 1135C200C4E for ; Thu, 6 Apr 2017 11:25:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0FBE4160BAC; Thu, 6 Apr 2017 09:25:25 +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 BA574160B9F for ; Thu, 6 Apr 2017 11:25:22 +0200 (CEST) Received: (qmail 92538 invoked by uid 500); 6 Apr 2017 09:25:16 -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 90404 invoked by uid 99); 6 Apr 2017 09:25:15 -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; Thu, 06 Apr 2017 09:25:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DBC44E93DC; Thu, 6 Apr 2017 09:25:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: git-site-role@apache.org To: commits@hbase.apache.org Date: Thu, 06 Apr 2017 09:25:53 -0000 Message-Id: <9e110e0e29c34d3b96209b6fcb51daae@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [41/51] [partial] hbase-site git commit: Published site at 17737b2710a2a1271eb791478eb99f7a573ecac1. archived-at: Thu, 06 Apr 2017 09:25:25 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/de74873b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html index cdf8989..e2a0d48 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html @@ -629,45 +629,45 @@ service. Cell -IndividualBytesFieldCell.deepClone()  +ByteBufferKeyValue.deepClone()  Cell -NoTagsKeyValue.deepClone()  +IndividualBytesFieldCell.deepClone()  Cell -ExtendedCell.deepClone() -
Does a deep copy of the contents to a new memory area and returns it as a new cell.
- +NoTagsByteBufferKeyValue.deepClone()  Cell -NoTagsByteBufferKeyValue.deepClone()  +NoTagsKeyValue.deepClone()  Cell -KeyValue.deepClone()  +CellUtil.TagRewriteCell.deepClone()  Cell -CellUtil.TagRewriteCell.deepClone()  +CellUtil.TagRewriteByteBufferCell.deepClone()  Cell -CellUtil.TagRewriteByteBufferCell.deepClone()  +CellUtil.ValueAndTagRewriteCell.deepClone()  Cell -CellUtil.ValueAndTagRewriteCell.deepClone()  +CellUtil.ValueAndTagRewriteByteBufferCell.deepClone()  Cell -CellUtil.ValueAndTagRewriteByteBufferCell.deepClone()  +KeyValue.deepClone()  Cell -ByteBufferKeyValue.deepClone()  +ExtendedCell.deepClone() +
Does a deep copy of the contents to a new memory area and returns it as a new cell.
+ @@ -1525,32 +1525,32 @@ service. -boolean -KeyValue.KVComparator.matchingRowColumn(Cell left, +static boolean +CellUtil.matchingRowColumn(Cell left, Cell right) -
Deprecated. 
Compares the row and column of two keyvalues for equality
-static boolean -CellUtil.matchingRowColumn(Cell left, +boolean +KeyValue.KVComparator.matchingRowColumn(Cell left, Cell right) +
Deprecated. 
Compares the row and column of two keyvalues for equality
-boolean -KeyValue.KVComparator.matchingRows(Cell left, +static boolean +CellUtil.matchingRows(Cell left, Cell right) -
Deprecated. 
Compares the row of two keyvalues for equality
-static boolean -CellUtil.matchingRows(Cell left, +boolean +KeyValue.KVComparator.matchingRows(Cell left, Cell right) +
Deprecated. 
Compares the row of two keyvalues for equality
@@ -1864,11 +1864,11 @@ service. private Cell -BatchScanResultCache.lastCell  +AllowPartialScanResultCache.lastCell  private Cell -AllowPartialScanResultCache.lastCell  +BatchScanResultCache.lastCell  @@ -1976,23 +1976,23 @@ service. +Append +Append.add(Cell cell) +
Add column and value to this Append operation.
+ + + Increment Increment.add(Cell cell)
Add the specified KeyValue to this operation.
- + Put Put.add(Cell kv)
Add the specified KeyValue to this Put operation.
- -Append -Append.add(Cell cell) -
Add column and value to this Append operation.
- - Delete Delete.addDeleteMarker(Cell kv) @@ -2079,6 +2079,16 @@ service. boolean mayHaveMoreCellsInRow)
  +Append +Append.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  + + +Mutation +Mutation.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map) +
Method for setting the put's familyMap
+ + + Delete Delete.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  @@ -2090,16 +2100,6 @@ service. Put Put.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  - -Append -Append.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)  - - -Mutation -Mutation.setFamilyCellMap(NavigableMap<byte[],List<Cell>> map) -
Method for setting the put's familyMap
- - @@ -2131,23 +2131,23 @@ service. - - - - - + + + + +
BigDecimalBigDecimalColumnInterpreter.getValue(byte[] colFamily, - byte[] colQualifier, - Cell kv) 
Double DoubleColumnInterpreter.getValue(byte[] colFamily, byte[] colQualifier, Cell c) 
Long LongColumnInterpreter.getValue(byte[] colFamily, byte[] colQualifier, Cell kv) 
BigDecimalBigDecimalColumnInterpreter.getValue(byte[] colFamily, + byte[] colQualifier, + Cell kv) 
@@ -2163,13 +2163,13 @@ service. -protected Cell -KeyValueCodec.ByteBuffKeyValueDecoder.current  - - private Cell BaseDecoder.current  + +protected Cell +KeyValueCodec.ByteBuffKeyValueDecoder.current  + @@ -2205,15 +2205,17 @@ service. - + - + - - + + @@ -2221,17 +2223,15 @@ service. - + - - + + - + @@ -2247,8 +2247,8 @@ service. - - + + @@ -2256,15 +2256,15 @@ service. - + - + - - + + @@ -2808,7 +2808,7 @@ service. - + @@ -2819,7 +2819,23 @@ service. - + + + + + + + + + + + + + + + + + @@ -2836,27 +2852,19 @@ service. - - - - - - - - - + - + - + - + @@ -2867,22 +2875,14 @@ service. - - - - - - - - - - + + @@ -2890,7 +2890,7 @@ service. - +
CellKeyValueCodec.ByteBuffKeyValueDecoder.current() BaseDecoder.current() 
CellBaseDecoder.current() KeyValueCodec.ByteBuffKeyValueDecoder.current() 
protected CellCellCodec.CellDecoder.parseCell() protected abstract CellBaseDecoder.parseCell() +
Extract a Cell.
+
protected Cell
protected CellKeyValueCodecWithTags.KeyValueDecoder.parseCell() CellCodecWithTags.CellDecoder.parseCell() 
protected abstract CellBaseDecoder.parseCell() -
Extract a Cell.
-
protected CellCellCodec.CellDecoder.parseCell() 
protected CellCellCodecWithTags.CellDecoder.parseCell() KeyValueCodecWithTags.KeyValueDecoder.parseCell() 
protected Cell
voidCellCodec.CellEncoder.write(Cell cell) abstract voidBaseEncoder.write(Cell cell) 
void
voidKeyValueCodecWithTags.KeyValueEncoder.write(Cell cell) CellCodecWithTags.CellEncoder.write(Cell cell) 
voidCellCodecWithTags.CellEncoder.write(Cell cell) CellCodec.CellEncoder.write(Cell cell) 
abstract voidBaseEncoder.write(Cell cell) voidKeyValueCodecWithTags.KeyValueEncoder.write(Cell cell) 
void
CellColumnPrefixFilter.getNextCellHint(Cell cell) FilterWrapper.getNextCellHint(Cell currentCell) 
Cell
CellFuzzyRowFilter.getNextCellHint(Cell currentCell) ColumnPrefixFilter.getNextCellHint(Cell cell) 
CellColumnRangeFilter.getNextCellHint(Cell cell) 
CellMultipleColumnPrefixFilter.getNextCellHint(Cell cell) 
CellColumnPaginationFilter.getNextCellHint(Cell cell) 
CellMultiRowRangeFilter.getNextCellHint(Cell currentKV) 
abstract Cell
CellFilterList.getNextCellHint(Cell currentCell) 
CellColumnRangeFilter.getNextCellHint(Cell cell) 
CellColumnPaginationFilter.getNextCellHint(Cell cell) FuzzyRowFilter.getNextCellHint(Cell currentCell) 
CellMultiRowRangeFilter.getNextCellHint(Cell currentKV) FilterList.getNextCellHint(Cell currentCell) 
CellFilterWrapper.getNextCellHint(Cell currentCell) SkipFilter.transformCell(Cell v) 
CellMultipleColumnPrefixFilter.getNextCellHint(Cell cell) FilterWrapper.transformCell(Cell v) 
Cell
abstract CellFilter.transformCell(Cell v) -
Give the filter a chance to transform the passed KeyValue.
-
CellSkipFilter.transformCell(Cell v) 
Cell KeyOnlyFilter.transformCell(Cell cell) 
CellFilterList.transformCell(Cell c) abstract CellFilter.transformCell(Cell v) +
Give the filter a chance to transform the passed KeyValue.
+
Cell
CellFilterWrapper.transformCell(Cell v) FilterList.transformCell(Cell c) 
@@ -2949,197 +2949,197 @@ service. Filter.ReturnCode -ColumnPrefixFilter.filterKeyValue(Cell cell)  +ValueFilter.filterKeyValue(Cell v)  Filter.ReturnCode -ColumnCountGetFilter.filterKeyValue(Cell v)  +SkipFilter.filterKeyValue(Cell v)  Filter.ReturnCode -RowFilter.filterKeyValue(Cell v)  +FamilyFilter.filterKeyValue(Cell v)  Filter.ReturnCode -FuzzyRowFilter.filterKeyValue(Cell c)  +FilterWrapper.filterKeyValue(Cell v)  -abstract Filter.ReturnCode -Filter.filterKeyValue(Cell v) -
A way to filter based on the column family, column qualifier and/or the column value.
- +Filter.ReturnCode +ColumnPrefixFilter.filterKeyValue(Cell cell)  Filter.ReturnCode -RandomRowFilter.filterKeyValue(Cell v)  +PageFilter.filterKeyValue(Cell ignored)  Filter.ReturnCode -FirstKeyOnlyFilter.filterKeyValue(Cell v)  +RowFilter.filterKeyValue(Cell v)  Filter.ReturnCode -SkipFilter.filterKeyValue(Cell v)  +ColumnRangeFilter.filterKeyValue(Cell kv)  Filter.ReturnCode -TimestampsFilter.filterKeyValue(Cell v)  +ColumnCountGetFilter.filterKeyValue(Cell v)  Filter.ReturnCode -ValueFilter.filterKeyValue(Cell v)  +MultipleColumnPrefixFilter.filterKeyValue(Cell kv)  Filter.ReturnCode -KeyOnlyFilter.filterKeyValue(Cell ignored)  +ColumnPaginationFilter.filterKeyValue(Cell v)  Filter.ReturnCode -FamilyFilter.filterKeyValue(Cell v)  +DependentColumnFilter.filterKeyValue(Cell c)  Filter.ReturnCode -QualifierFilter.filterKeyValue(Cell v)  +InclusiveStopFilter.filterKeyValue(Cell v)  Filter.ReturnCode -FilterList.filterKeyValue(Cell c)  +KeyOnlyFilter.filterKeyValue(Cell ignored)  Filter.ReturnCode -ColumnRangeFilter.filterKeyValue(Cell kv)  +MultiRowRangeFilter.filterKeyValue(Cell ignored)  -Filter.ReturnCode -ColumnPaginationFilter.filterKeyValue(Cell v)  +abstract Filter.ReturnCode +Filter.filterKeyValue(Cell v) +
A way to filter based on the column family, column qualifier and/or the column value.
+ Filter.ReturnCode -WhileMatchFilter.filterKeyValue(Cell v)  +FirstKeyOnlyFilter.filterKeyValue(Cell v)  Filter.ReturnCode -MultiRowRangeFilter.filterKeyValue(Cell ignored)  +WhileMatchFilter.filterKeyValue(Cell v)  Filter.ReturnCode -PrefixFilter.filterKeyValue(Cell v)  +FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell v) +
Deprecated. 
Filter.ReturnCode -DependentColumnFilter.filterKeyValue(Cell c)  +TimestampsFilter.filterKeyValue(Cell v)  Filter.ReturnCode -FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell v) -
Deprecated. 
-  +FuzzyRowFilter.filterKeyValue(Cell c)  Filter.ReturnCode -PageFilter.filterKeyValue(Cell ignored)  +FilterList.filterKeyValue(Cell c)  Filter.ReturnCode -InclusiveStopFilter.filterKeyValue(Cell v)  +RandomRowFilter.filterKeyValue(Cell v)  Filter.ReturnCode -FilterWrapper.filterKeyValue(Cell v)  +PrefixFilter.filterKeyValue(Cell v)  Filter.ReturnCode -MultipleColumnPrefixFilter.filterKeyValue(Cell kv)  +SingleColumnValueFilter.filterKeyValue(Cell c)  Filter.ReturnCode -SingleColumnValueFilter.filterKeyValue(Cell c)  +QualifierFilter.filterKeyValue(Cell v)  boolean -ColumnPrefixFilter.filterRowKey(Cell cell)  +SkipFilter.filterRowKey(Cell cell)  boolean -ColumnCountGetFilter.filterRowKey(Cell cell)  +FilterWrapper.filterRowKey(Cell cell)  boolean -CompareFilter.filterRowKey(Cell cell)  +FilterBase.filterRowKey(Cell cell)  boolean -RowFilter.filterRowKey(Cell firstRowCell)  +ColumnPrefixFilter.filterRowKey(Cell cell)  boolean -FilterBase.filterRowKey(Cell cell)  +PageFilter.filterRowKey(Cell cell)  -abstract boolean -Filter.filterRowKey(Cell firstRowCell) -
Filters a row based on the row key.
- +boolean +RowFilter.filterRowKey(Cell firstRowCell)  boolean -RandomRowFilter.filterRowKey(Cell firstRowCell)  +ColumnRangeFilter.filterRowKey(Cell cell)  boolean -FirstKeyOnlyFilter.filterRowKey(Cell cell)  +ColumnCountGetFilter.filterRowKey(Cell cell)  boolean -SkipFilter.filterRowKey(Cell cell)  +MultipleColumnPrefixFilter.filterRowKey(Cell cell)  boolean -TimestampsFilter.filterRowKey(Cell cell)  +ColumnPaginationFilter.filterRowKey(Cell cell)  boolean -KeyOnlyFilter.filterRowKey(Cell cell)  +InclusiveStopFilter.filterRowKey(Cell firstRowCell)  boolean -FilterList.filterRowKey(Cell firstRowCell)  +KeyOnlyFilter.filterRowKey(Cell cell)  boolean -ColumnRangeFilter.filterRowKey(Cell cell)  +MultiRowRangeFilter.filterRowKey(Cell firstRowCell)  -boolean -ColumnPaginationFilter.filterRowKey(