Example #1
0
 public BytesRowKey(byte[] key) {
   Util.checkNull(key);
   this.key = key;
 }
Example #2
0
 @Override
 protected Object innerToObject(Class<?> type, byte[] bytes) {
   Util.checkLength(bytes, 1);
   return bytes[0];
 }