kAWT Version 0.90

java.io
Interface DataInput

All Known Implementing Classes:
DataInputStream

public interface DataInput


Method Summary
 boolean readBoolean()
           
 byte readByte()
           
 char readChar()
           
 void readFully(byte[])
           
 void readFully(byte[], int, int)
           
 int readInt()
           
 long readLong()
           
 short readShort()
           
 int readUnsignedByte()
           
 int readUnsignedShort()
           
 String readUTF()
           
 int skipBytes(int)
           
 

Method Detail

readBoolean

public boolean readBoolean()
                    throws IOException

readByte

public byte readByte()
              throws IOException

readChar

public char readChar()
              throws IOException

readFully

public void readFully(byte[])
               throws IOException

readFully

public void readFully(byte[],
                      int,
                      int)
               throws IOException

readInt

public int readInt()
            throws IOException

readLong

public long readLong()
              throws IOException

readShort

public short readShort()
                throws IOException

readUTF

public String readUTF()
               throws IOException

readUnsignedByte

public int readUnsignedByte()
                     throws IOException

readUnsignedShort

public int readUnsignedShort()
                      throws IOException

skipBytes

public int skipBytes(int)
              throws IOException

kAWT Version 0.90