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

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

There is a newer version: 0.7.0
Show newest version
package com.zakgof.tools.io;

import java.io.IOException;


public class SimpleShortSerializer implements ISimpleSerializer {
  
  public static SimpleShortSerializer INSTANCE = new SimpleShortSerializer();
  
  private SimpleShortSerializer() {    
  }

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

  @Override
  public Short read(SimpleInputStream in) throws IOException {
    return in.readShort();
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy