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 2933795822
commit cf9878f77e
1 changed files with 2 additions and 3 deletions

View File

@ -112,8 +112,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();
@ -173,7 +172,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();