Exemplo n.º 1
0
 public byte[] getBytes() {
   return SerializationUtil.decompressByteArray(bytes);
 }
Exemplo n.º 2
0
 public ClassBytes(String name, byte[] bytes) {
   this.name = name;
   this.bytes = SerializationUtil.compressByteArray(bytes, Deflater.BEST_SPEED);
 }