HBASE-16363 Correct javadoc for qualifier length and value (Xiang Li)
This commit is contained in:
parent
2933795822
commit
cf9878f77e
|
@ -112,8 +112,7 @@ public interface Cell {
|
||||||
//3) Qualifier
|
//3) Qualifier
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contiguous raw bytes that may start at any index in the containing array. Max length is
|
* Contiguous raw bytes that may start at any index in the containing array.
|
||||||
* Short.MAX_VALUE which is 32,767 bytes.
|
|
||||||
* @return The array containing the qualifier bytes.
|
* @return The array containing the qualifier bytes.
|
||||||
*/
|
*/
|
||||||
byte[] getQualifierArray();
|
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
|
* 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.
|
* @return The array containing the value bytes.
|
||||||
*/
|
*/
|
||||||
byte[] getValueArray();
|
byte[] getValueArray();
|
||||||
|
|
Loading…
Reference in New Issue