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 DA587200C53 for ; Tue, 11 Apr 2017 20:41:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D900F160B9B; Tue, 11 Apr 2017 18:41:15 +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 8A8F7160BAD for ; Tue, 11 Apr 2017 20:41:13 +0200 (CEST) Received: (qmail 58513 invoked by uid 500); 11 Apr 2017 18:41:06 -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 55147 invoked by uid 99); 11 Apr 2017 18:41:04 -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; Tue, 11 Apr 2017 18:41:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2C438DFF9F; Tue, 11 Apr 2017 18:41:04 +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: Tue, 11 Apr 2017 18:41:45 -0000 Message-Id: In-Reply-To: <6638462d659e4f5bb3d3ff184077ecd1@git.apache.org> References: <6638462d659e4f5bb3d3ff184077ecd1@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [44/51] [partial] hbase-site git commit: Published site at 82d554e3783372cc6b05489452c815b57c06f6cd. archived-at: Tue, 11 Apr 2017 18:41:16 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e57d1b63/apidocs/org/apache/hadoop/hbase/CellUtil.html ---------------------------------------------------------------------- diff --git a/apidocs/org/apache/hadoop/hbase/CellUtil.html b/apidocs/org/apache/hadoop/hbase/CellUtil.html deleted file mode 100644 index 69bb753..0000000 --- a/apidocs/org/apache/hadoop/hbase/CellUtil.html +++ /dev/null @@ -1,2596 +0,0 @@ - - - - - - -CellUtil (Apache HBase 2.0.0-SNAPSHOT API) - - - - - - - - - - - -
-
org.apache.hadoop.hbase
-

Class CellUtil

-
-
- -
-
    -
  • -
    -
    -
    @InterfaceAudience.Public
    -public final class CellUtil
    -extends Object
    -
    Utility methods helpful slinging Cell instances. - Some methods below are for internal use only and are marked InterfaceAudience.Private at the - method level.
    -
  • -
-
-
- -
-
-
    -
  • - -
      -
    • - - -

      Method Detail

      - - - - - - - - - - - - - - - - - - - - - - - -
        -
      • -

        cloneRow

        -
        public static byte[] cloneRow(Cell cell)
        -
        get individual arrays for tests
        -
      • -
      - - - - - - - - - - - - - - - - - - - -
        -
      • -

        getTagArray

        -
        public static byte[] getTagArray(Cell cell)
        -
        Returns tag value in a new byte array. If server-side, use - Tag.getValueArray() with appropriate Tag.getValueOffset() and - Tag.getValueLength() instead to save on allocations.
        -
        -
        Parameters:
        -
        cell -
        -
        Returns:
        -
        tag value in a new byte array.
        -
        -
      • -
      - - - -
        -
      • -

        copyRowTo

        -
        public static int copyRowTo(Cell cell,
        -                            byte[] destination,
        -                            int destinationOffset)
        -
        copyTo
        -
      • -
      - - - - - - - -
        -
      • -

        copyRow

        -
        public static byte[] copyRow(Cell cell)
        -
        Copies the row to a new byte[]
        -
        -
        Parameters:
        -
        cell - the cell from which row has to copied
        -
        Returns:
        -
        the byte[] containing the row
        -
        -
      • -
      - - - -
        -
      • -

        copyFamilyTo

        -
        public static int copyFamilyTo(Cell cell,
        -                               byte[] destination,
        -                               int destinationOffset)
        -
      • -
      - - - - - - - -
        -
      • -

        copyQualifierTo

        -
        public static int copyQualifierTo(Cell cell,
        -                                  byte[] destination,
        -                                  int destinationOffset)
        -
      • -
      - - - - - - - -
        -
      • -

        copyValueTo

        -
        public static int copyValueTo(Cell cell,
        -                              byte[] destination,
        -                              int destinationOffset)
        -
      • -
      - - - - - - - -
        -
      • -

        copyTagTo

        -
        public static int copyTagTo(Cell cell,
        -                            byte[] destination,
        -                            int destinationOffset)
        -
        Copies the tags info into the tag portion of the cell
        -
        -
        Parameters:
        -
        cell -
        -
        destination -
        -
        destinationOffset -
        -
        Returns:
        -
        position after tags
        -
        -
      • -
      - - - -
        -
      • -

        copyTagTo

        -
        public static int