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 6F962200CF7 for ; Mon, 4 Sep 2017 17:13:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6E0C116524E; Mon, 4 Sep 2017 15:13:40 +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 0479B16522D for ; Mon, 4 Sep 2017 17:13:37 +0200 (CEST) Received: (qmail 31147 invoked by uid 500); 4 Sep 2017 15:13:32 -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 26456 invoked by uid 99); 4 Sep 2017 15:13:29 -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; Mon, 04 Sep 2017 15:13:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5AA57F569B; Mon, 4 Sep 2017 15:13:28 +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: Mon, 04 Sep 2017 15:14:01 -0000 Message-Id: <187d6f7a37ed4ac4b24e1b9d6f7523f4@git.apache.org> In-Reply-To: <11ac7b34f0de4798b7ee39965d7dade7@git.apache.org> References: <11ac7b34f0de4798b7ee39965d7dade7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [35/51] [partial] hbase-site git commit: Published site at . archived-at: Mon, 04 Sep 2017 15:13:40 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/Append.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/Append.html b/devapidocs/org/apache/hadoop/hbase/client/Append.html index ac7381d..b2a2a72 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/Append.html +++ b/devapidocs/org/apache/hadoop/hbase/client/Append.html @@ -129,14 +129,13 @@ var activeTableTab = "activeTableTab";

@InterfaceAudience.Public
-public class Append
+public class Append
 extends Mutation
Performs Append operations on a single row.

- Note that this operation does not appear atomic to readers. Appends are done - under a single row lock, so write operations to a row are synchronized, but - readers do not take row locks so get and scan operations can see this - operation partially completed. + This operation ensures atomicty to readers. Appends are done + under a single row lock, so write operations to a row are synchronized, and + readers are guaranteed to see this operation fully completed.

To append to a set of columns of a row, instantiate an Append object with the row to append to. At least one column to append must be specified using the @@ -350,7 +349,7 @@ extends

  • Append

    -
    public Append(byte[] row)
    +
    public Append(byte[] row)
    Create a Append operation for the specified row.

    At least one column must be appended to.

    @@ -366,7 +365,7 @@ extends
  • Append

    -
    public Append(Append a)
    +
    public Append(Append a)
    Copy constructor
    Parameters:
    @@ -380,7 +379,7 @@ extends
  • Append

    -
    public Append(byte[] rowArray,
    +
    public Append(byte[] rowArray,
                   int rowOffset,
                   int rowLength)
    Create a Append operation for the specified row. @@ -408,7 +407,7 @@ extends
  • setReturnResults

    -
    public Append setReturnResults(boolean returnResults)
    +
    public Append setReturnResults(boolean returnResults)
    Overrides:
    setReturnResults in class Mutation
    @@ -425,7 +424,7 @@ extends
  • isReturnResults

    -
    public boolean isReturnResults()
    +
    public boolean isReturnResults()
    Overrides:
    isReturnResults in class Mutation
    @@ -441,7 +440,7 @@ extends

    add

    @Deprecated
    -public Append add(byte[] family,
    +public Append add(byte[] family,
                                   byte[] qualifier,
                                   byte[] value)
    Deprecated. As of release 2.0.0, this will be removed in HBase 3.0.0. @@ -463,7 +462,7 @@ public 
  • addColumn

    -
    public Append addColumn(byte[] family,
    +
    public Append addColumn(byte[] family,
                             byte[] qualifier,
                             byte[] value)
    Add the specified column and value to this Append operation.
    @@ -483,7 +482,7 @@ public 
  • add

    -
    public Append add(Cell cell)
    +
    public Append add(Cell cell)
    Add column and value to this Append operation.
    Parameters:
    @@ -499,7 +498,7 @@ public 
  • setAttribute

    -
    public Append setAttribute(String name,
    +
    public Append setAttribute(String name,
                                byte[] value)
    Description copied from interface: Attributes
    Sets an attribute. @@ -522,7 +521,7 @@ public 
  • setId

    -
    public Append setId(String id)
    +
    public Append setId(String id)
    Description copied from class: OperationWithAttributes
    This method allows you to set an identifier on an operation. The original motivation for this was to allow the identifier to be used in slow query @@ -543,7 +542,7 @@ public 
  • setDurability

    -
    public Append setDurability(Durability d)
    +
    public Append setDurability(Durability d)
    Description copied from class: Mutation
    Set the durability for this mutation
    @@ -558,7 +557,7 @@ public 
  • setFamilyCellMap

    -
    public Append setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)
    +
    public Append setFamilyCellMap(NavigableMap<byte[],List<Cell>> map)
    Description copied from class: Mutation
    Method for setting the put's familyMap
    @@ -573,7 +572,7 @@ public 
  • setClusterIds

    -
    public Append setClusterIds(List<UUID> clusterIds)
    +
    public Append setClusterIds(List<UUID> clusterIds)
    Description copied from class: Mutation
    Marks that the clusters with the given clusterIds have consumed the mutation
    @@ -590,7 +589,7 @@ public 
  • setCellVisibility

    -
    public Append setCellVisibility(CellVisibility expression)
    +
    public Append setCellVisibility(CellVisibility expression)
    Description copied from class: Mutation
    Sets the visibility expression associated with cells in this Mutation.
    @@ -605,7 +604,7 @@ public 
  • setACL

    -
    public Append setACL(String user,
    +
    public Append setACL(String user,
                          Permission perms)
    Overrides:
    @@ -622,7 +621,7 @@ public 
  • setACL

    -
    public Append setACL(Map<String,Permission> perms)
    +
    public Append setACL(Map<String,Permission> perms)
    Overrides:
    setACL in class Mutation
    @@ -637,7 +636,7 @@ public 
  • setPriority

    -
    public Append setPriority(int priority)
    +
    public Append setPriority(int priority)
    Overrides:
    setPriority in class OperationWithAttributes
    @@ -650,7 +649,7 @@ public 
  • setTTL

    -
    public Append setTTL(long ttl)
    +
    public Append setTTL(long ttl)
    Description copied from class: Mutation
    Set the TTL desired for the result of the mutation, in milliseconds.
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html index 30da010..4754535 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html @@ -132,7 +132,7 @@ var activeTableTab = "activeTableTab";


    -
    private static class HBaseAdmin.AddColumnFamilyFuture
    +
    private static class HBaseAdmin.AddColumnFamilyFuture
     extends HBaseAdmin.ModifyTableFuture
  • @@ -246,7 +246,7 @@ extends
  • AddColumnFamilyFuture

    -
    public AddColumnFamilyFuture(HBaseAdmin admin,
    +
    public AddColumnFamilyFuture(HBaseAdmin admin,
                                  TableName tableName,
                                  org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse response)
  • @@ -265,7 +265,7 @@ extends
  • getOperationType

    -
    public String getOperationType()
    +
    public String getOperationType()
    Overrides:
    getOperationType in class HBaseAdmin.ModifyTableFuture
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html index 07384eb..b6fa1bd 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html @@ -132,7 +132,7 @@ var activeTableTab = "activeTableTab";


    -
    private static class HBaseAdmin.DeleteColumnFamilyFuture
    +
    private static class HBaseAdmin.DeleteColumnFamilyFuture
     extends HBaseAdmin.ModifyTableFuture
  • @@ -246,7 +246,7 @@ extends
  • DeleteColumnFamilyFuture

    -
    public DeleteColumnFamilyFuture(HBaseAdmin admin,
    +
    public DeleteColumnFamilyFuture(HBaseAdmin admin,
                                     TableName tableName,
                                     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse response)
  • @@ -265,7 +265,7 @@ extends
  • getOperationType

    -
    public String getOperationType()
    +
    public String getOperationType()
    Overrides:
    getOperationType in class HBaseAdmin.ModifyTableFuture
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html index 1ea496a..1725f19 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html @@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";


    -
    private static class HBaseAdmin.MergeTableRegionsFuture
    +
    private static class HBaseAdmin.MergeTableRegionsFuture
     extends HBaseAdmin.TableFuture<Void>
  • @@ -239,7 +239,7 @@ extends
  • MergeTableRegionsFuture

    -
    public MergeTableRegionsFuture(HBaseAdmin admin,
    +
    public MergeTableRegionsFuture(HBaseAdmin admin,
                                    TableName tableName,
                                    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.MergeTableRegionsResponse response)
  • @@ -250,7 +250,7 @@ extends
  • MergeTableRegionsFuture

    -
    public MergeTableRegionsFuture(HBaseAdmin admin,
    +
    public MergeTableRegionsFuture(HBaseAdmin admin,
                                    TableName tableName,
                                    Long procId)
  • @@ -269,7 +269,7 @@ extends
  • getOperationType

    -
    public String getOperationType()
    +
    public String getOperationType()
    Specified by:
    getOperationType in class HBaseAdmin.TableFuture<Void>
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html index 50b13e7..b9c003a 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html @@ -132,7 +132,7 @@ var activeTableTab = "activeTableTab";


    -
    private static class HBaseAdmin.ModifyColumnFamilyFuture
    +
    private static class HBaseAdmin.ModifyColumnFamilyFuture
     extends HBaseAdmin.ModifyTableFuture
  • @@ -246,7 +246,7 @@ extends
  • ModifyColumnFamilyFuture

    -
    public ModifyColumnFamilyFuture(HBaseAdmin admin,
    +
    public ModifyColumnFamilyFuture(HBaseAdmin admin,
                                     TableName tableName,
                                     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ModifyColumnResponse response)
  • @@ -265,7 +265,7 @@ extends
  • getOperationType

    -
    public String getOperationType()
    +
    public String getOperationType()
    Overrides:
    getOperationType in class HBaseAdmin.ModifyTableFuture
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html index 08df163..746dfd1 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html @@ -131,7 +131,7 @@ var activeTableTab = "activeTableTab";


    -
    private static class HBaseAdmin.ModifyTableFuture
    +
    private static class HBaseAdmin.ModifyTableFuture
     extends HBaseAdmin.TableFuture<Void>
  • @@ -250,7 +250,7 @@ extends
  • ModifyTableFuture

    -
    public ModifyTableFuture(HBaseAdmin admin,
    +
    public ModifyTableFuture(HBaseAdmin admin,
                              TableName tableName,
                              org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ModifyTableResponse response)
  • @@ -261,7 +261,7 @@ extends
  • ModifyTableFuture

    -
    public ModifyTableFuture(HBaseAdmin admin,
    +
    public ModifyTableFuture(HBaseAdmin admin,
                              TableName tableName,
                              Long procId)
  • @@ -280,7 +280,7 @@ extends
  • getOperationType

    -
    public String getOperationType()
    +
    public String getOperationType()
    Specified by:
    getOperationType in class HBaseAdmin.TableFuture<Void>
    @@ -295,7 +295,7 @@ extends
  • postOperationResult

    -
    protected Void postOperationResult(Void result,
    +
    protected Void postOperationResult(Void result,
                                        long deadlineTs)
                                 throws IOException,
                                        TimeoutException
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html index ccdc670..9f96705 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html @@ -124,7 +124,7 @@ var activeTableTab = "activeTableTab";
    @InterfaceAudience.Private
      @InterfaceStability.Evolving
    -protected abstract static class HBaseAdmin.NamespaceFuture
    +protected abstract static class HBaseAdmin.NamespaceFuture
     extends HBaseAdmin.ProcedureFuture<Void>
  • @@ -244,7 +244,7 @@ extends
  • namespaceName

    -
    private final String namespaceName
    +
    private final String namespaceName
  • @@ -261,7 +261,7 @@ extends
  • NamespaceFuture

    -
    public NamespaceFuture(HBaseAdmin admin,
    +
    public NamespaceFuture(HBaseAdmin admin,
                            String namespaceName,
                            Long procId)
  • @@ -280,7 +280,7 @@ extends
  • getNamespaceName

    -
    protected String getNamespaceName()
    +
    protected String getNamespaceName()
    Returns:
    the namespace name
    @@ -293,7 +293,7 @@ extends
  • getOperationType

    -
    public abstract String getOperationType()
    +
    public abstract String getOperationType()
    Returns:
    the operation type like CREATE_NAMESPACE, DELETE_NAMESPACE, etc.
    @@ -306,7 +306,7 @@ extends
  • toString

    -
    public String toString()
    +
    public String toString()
    Overrides:
    toString in class Object
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html index 4b7af72..a66dbab 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html @@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";


    -
    protected static interface HBaseAdmin.ProcedureFuture.WaitForStateCallable
    +
    protected static interface HBaseAdmin.ProcedureFuture.WaitForStateCallable
  • @@ -161,7 +161,7 @@ var activeTableTab = "activeTableTab"; @@ -355,7 +355,7 @@ implements
  • cancelled

    -
    private boolean cancelled
    +
    private boolean cancelled
  • @@ -364,7 +364,7 @@ implements
  • result

    -
    private V result
    +
    private V result
  • @@ -373,7 +373,7 @@ implements
  • admin

    -
    private final HBaseAdmin admin
    +
    private final HBaseAdmin admin
  • @@ -382,7 +382,7 @@ implements
  • procId

    -
    private final Long procId
    +
    private final Long procId
  • @@ -399,7 +399,7 @@ implements
  • ProcedureFuture

    -
    public ProcedureFuture(HBaseAdmin admin,
    +
    public ProcedureFuture(HBaseAdmin admin,
                            Long procId)
  • @@ -417,7 +417,7 @@ implements
  • cancel

    -
    public boolean cancel(boolean mayInterruptIfRunning)
    +
    public boolean cancel(boolean mayInterruptIfRunning)
    Specified by:
    cancel in interface Future<V>
    @@ -430,7 +430,7 @@ implements
  • isCancelled

    -
    public boolean isCancelled()
    +
    public boolean isCancelled()
    Specified by:
    isCancelled in interface Future<V>
    @@ -443,7 +443,7 @@ implements
  • abortProcedureResult

    -
    protected org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse abortProcedureResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest request)
    +
    protected org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse abortProcedureResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest request)
                                                                                                                   throws IOException
    Throws:
    @@ -457,7 +457,7 @@ implements
  • get

    -
    public V get()
    +
    public V get()
           throws InterruptedException,
                  ExecutionException
    @@ -475,7 +475,7 @@ implements
  • get

    -
    public V get(long timeout,
    +
    public V get(long timeout,
                  TimeUnit unit)
           throws InterruptedException,
                  ExecutionException,
    @@ -496,7 +496,7 @@ implements 
     
  • isDone

    -
    public boolean isDone()
    +
    public boolean isDone()
    Specified by:
    isDone in interface Future<V>
    @@ -509,7 +509,7 @@ implements
  • getAdmin

    -
    protected HBaseAdmin getAdmin()
    +
    protected HBaseAdmin getAdmin()
  • @@ -518,7 +518,7 @@ implements
  • waitProcedureResult

    -
    private V waitProcedureResult(long procId,
    +
    private V waitProcedureResult(long procId,
                                   long deadlineTs)
                            throws IOException,
                                   TimeoutException,
    @@ -537,7 +537,7 @@ implements 
     
  • unwrapException

    -
    private static IOException unwrapException(IOException e)
    +
    private static IOException unwrapException(IOException e)
  • @@ -546,7 +546,7 @@ implements
  • getProcedureResult

    -
    protected org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultResponse getProcedureResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultRequest request)
    +
    protected org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultResponse getProcedureResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultRequest request)
                                                                                                                     throws IOException
    Throws:
    @@ -560,7 +560,7 @@ implements
  • convertResult

    -
    protected V convertResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultResponse response)
    +
    protected V convertResult(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultResponse response)
                        throws IOException
    Convert the procedure result response to a specified type.
    @@ -579,7 +579,7 @@ implements
  • waitOperationResult

    -
    protected V waitOperationResult(long deadlineTs)
    +
    protected V waitOperationResult(long deadlineTs)
                              throws IOException,
                                     TimeoutException
    Fallback implementation in case the procedure is not supported by the server. @@ -603,7 +603,7 @@ implements
  • postOperationResult

    -
    protected V postOperationResult(V result,
    +
    protected V postOperationResult(V result,
                                     long deadlineTs)
                              throws IOException,
                                     TimeoutException
    @@ -628,7 +628,7 @@ implements
  • postOperationFailure

    -
    protected V postOperationFailure(IOException exception,
    +
    protected V postOperationFailure(IOException exception,
                                      long deadlineTs)
                               throws IOException,
                                      TimeoutException
    @@ -654,7 +654,7 @@ implements
  • waitForState

    -
    protected void waitForState(long deadlineTs,
    +
    protected void waitForState(long deadlineTs,
                                 HBaseAdmin.ProcedureFuture.WaitForStateCallable callable)
                          throws IOException,
                                 TimeoutException
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e1eb0a07/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html index dce180a..810244e 100644 --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html @@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";


  • -
    private static enum HBaseAdmin.ReplicationState
    +
    private static enum HBaseAdmin.ReplicationState
     extends Enum<HBaseAdmin.ReplicationState>
    This enum indicates the current state of the replication for a given table.
  • @@ -214,7 +214,7 @@ the order they are declared.
  • @@ -223,7 +223,7 @@ the order they are declared.
  • @@ -232,7 +232,7 @@ the order they are declared.
  • @@ -249,7 +249,7 @@ the order they are declared.