home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / io / DataInput.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  747 b   |  34 lines

  1. package java.io;
  2.  
  3. public interface DataInput {
  4.    void readFully(byte[] var1) throws IOException;
  5.  
  6.    void readFully(byte[] var1, int var2, int var3) throws IOException;
  7.  
  8.    int skipBytes(int var1) throws IOException;
  9.  
  10.    boolean readBoolean() throws IOException;
  11.  
  12.    byte readByte() throws IOException;
  13.  
  14.    int readUnsignedByte() throws IOException;
  15.  
  16.    short readShort() throws IOException;
  17.  
  18.    int readUnsignedShort() throws IOException;
  19.  
  20.    char readChar() throws IOException;
  21.  
  22.    int readInt() throws IOException;
  23.  
  24.    long readLong() throws IOException;
  25.  
  26.    float readFloat() throws IOException;
  27.  
  28.    double readDouble() throws IOException;
  29.  
  30.    String readLine() throws IOException;
  31.  
  32.    String readUTF() throws IOException;
  33. }
  34.