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

com.zakgof.tools.io.SimpleDoubleSerializer 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 SimpleDoubleSerializer implements ISimpleSerializer {
  
  public static SimpleDoubleSerializer INSTANCE = new SimpleDoubleSerializer();
  
  private SimpleDoubleSerializer() {    
  }

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

  @Override
  public Double read(SimpleInputStream in) throws IOException {
    return in.readDouble();
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy