package java.io;

public interface DataOutput
{

 public void write(int) throws IOException;
 
 public void write(byte[]) throws IOException;
 
 public void write(byte[], int, int) throws IOException;
 
 public void writeBoolean(boolean) throws IOException;
 
 public void writeByte(int) throws IOException;
 
 public void writeShort(int) throws IOException;
 
 public void writeChar(int) throws IOException;
 
 public void writeInt(int) throws IOException;
 
 public void writeLong(long) throws IOException;
 
 public void writeFloat(float) throws IOException;
 
 public void writeDouble(double) throws IOException;
 
 public void writeChars(String) throws IOException;
 
 public void writeUTF(String) throws IOException;
 
}