HBASE-16363 Correct javadoc for qualifier length and value (Xiang Li)

This commit is contained in:
stack 2016-08-10 17:53:13 -07:00
parent 88956676d7
commit 7e32510513
1 changed files with 2 additions and 3 deletions

View File

@ -106,8 +106,7 @@ public interface Cell {
//3) Qualifier
/**
* Contiguous raw bytes that may start at any index in the containing array. Max length is
* Short.MAX_VALUE which is 32,767 bytes.
* Contiguous raw bytes that may start at any index in the containing array.
* @return The array containing the qualifier bytes.
*/
byte[] getQualifierArray();
@ -155,7 +154,7 @@ public interface Cell {
/**
* Contiguous raw bytes that may start at any index in the containing array. Max length is
* Integer.MAX_VALUE which is 2,147,483,648 bytes.
* Integer.MAX_VALUE which is 2,147,483,647 bytes.
* @return The array containing the value bytes.
*/
byte[] getValueArray();