java.io
Interface DataInput

All Known Implementing Classes:
DataInputStream

public interface DataInput

Author:
Sven Köhler

Method Summary
 boolean readBoolean()
           
 byte readByte()
           
 char readChar()
           
 double readDouble()
           
 float readFloat()
           
 void readFully(byte[] b)
           
 void readFully(byte[] b, int off, int len)
           
 int readInt()
           
 String readLine()
           
 long readLong()
           
 short readShort()
           
 int readUnsignedByte()
           
 int readUnsignedShort()
           
 String readUTF()
           
 int skipBytes(int n)
           
 

Method Detail

readBoolean

boolean readBoolean()
                    throws IOException
Throws:
IOException

readByte

byte readByte()
              throws IOException
Throws:
IOException

readChar

char readChar()
              throws IOException
Throws:
IOException

readDouble

double readDouble()
                  throws IOException
Throws:
IOException

readFloat

float readFloat()
                throws IOException
Throws:
IOException

readFully

void readFully(byte[] b)
               throws IOException
Throws:
IOException

readFully

void readFully(byte[] b,
               int off,
               int len)
               throws IOException
Throws:
IOException

readInt

int readInt()
            throws IOException
Throws:
IOException

readLine

String readLine()
                throws IOException
Throws:
IOException

readLong

long readLong()
              throws IOException
Throws:
IOException

readShort

short readShort()
                throws IOException
Throws:
IOException

readUnsignedByte

int readUnsignedByte()
                     throws IOException
Throws:
IOException

readUnsignedShort

int readUnsignedShort()
                      throws IOException
Throws:
IOException

readUTF

String readUTF()
               throws IOException
Throws:
IOException

skipBytes

int skipBytes(int n)
              throws IOException
Throws:
IOException