Index: src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java (revision 1400484) +++ src/main/java/org/apache/hadoop/hbase/client/HTableInterface.java (working copy) @@ -75,12 +75,12 @@ boolean exists(Get get) throws IOException; /** - * Method that does a batch call on Deletes, Gets and Puts. The ordering of - * execution of the actions is not defined. Meaning if you do a Put and a + * Method that does a batch call on Deletes, Gets, Puts, Increments, Appends and RowMutations. + * The ordering of execution of the actions is not defined. Meaning if you do a Put and a * Get in the same {@link #batch} call, you will not necessarily be * guaranteed that the Get returns what the Put had put. * - * @param actions list of Get, Put, Delete objects + * @param actions list of Get, Put, Delete, Increment, Append, RowMutations objects * @param results Empty Object[], same size as actions. Provides access to partial * results, in case an exception is thrown. A null in the result array means that * the call for that action failed, even after retries @@ -93,7 +93,7 @@ * Same as {@link #batch(List, Object[])}, but returns an array of * results instead of using a results parameter reference. * - * @param actions list of Get, Put, Delete objects + * @param actions list of Get, Put, Delete, Increment, Append, RowMutations objects * @return the results from the actions. A null in the return array means that * the call for that action failed, even after retries * @throws IOException