All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zakgof.tools.io.SimpleByteArraySerializer Maven / Gradle / Ivy

package com.zakgof.tools.io;

import java.io.IOException;

public class SimpleByteArraySerializer implements ISimpleSerializer {

  public static SimpleByteArraySerializer INSTANCE = new SimpleByteArraySerializer();

  private SimpleByteArraySerializer() {
  }

  @Override
  public void write(SimpleOutputStream out, byte[] val) throws IOException {
    out.write(val);
  }

  @Override
  public byte[] read(SimpleInputStream in) throws IOException {
    return in.readBytes();
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy