package java.io;

public interface DataOutput
{

 public void write(int int_1) throws IOException;
 
 public void write(byte[] bytes_1) throws IOException;
 
 public void write(byte[] bytes_1, int int_1, int int_2) throws IOException;
 
 public void writeBoolean(boolean boolean_1) throws IOException;
 
 public void writeByte(int int_1) throws IOException;
 
 public void writeShort(int int_1) throws IOException;
 
 public void writeChar(int int_1) throws IOException;
 
 public void writeInt(int int_1) throws IOException;
 
 public void writeLong(long long_1) throws IOException;
 
 public void writeFloat(float float_1) throws IOException;
 
 public void writeDouble(double double_1) throws IOException;
 
 public void writeChars(String string_1) throws IOException;
 
 public void writeUTF(String string_1) throws IOException;
 
}