Validates a value (the contents of an HBase cell). @throws IllegalArgumentException if the value is too big. @throws NullPointerException if the value is null.
(final byte[] value)
| 394 | * @throws NullPointerException if the value is {@code null}. |
| 395 | */ |
| 396 | static void checkValue(final byte[] value) { |
| 397 | HBaseRpc.checkArrayLength(value); |
| 398 | } |
| 399 | |
| 400 | // ---------------------- // |
| 401 | // Serialization helpers. // |
no test coverage detected