Prints the raw data of the qualifier and value
()
| 369 | |
| 370 | /** Prints the raw data of the qualifier and value */ |
| 371 | @Override |
| 372 | public String toString() { |
| 373 | return "Cell(" + Arrays.toString(qualifier) |
| 374 | + ", " + Arrays.toString(value) + ')'; |
| 375 | } |
| 376 | |
| 377 | /** @return the qualifier byte array */ |
| 378 | public byte[] qualifier() { |
no outgoing calls
no test coverage detected