Validates a column qualifier. @throws IllegalArgumentException if the qualifier name is too big. @throws NullPointerException if the qualifier is null.
(final byte[] qualifier)
| 375 | * @throws NullPointerException if the qualifier is {@code null}. |
| 376 | */ |
| 377 | static void checkQualifier(final byte[] qualifier) { |
| 378 | HBaseRpc.checkArrayLength(qualifier); |
| 379 | } |
| 380 | |
| 381 | /** |
| 382 | * Validates a timestamp. |
no test coverage detected