All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Interface org.jos.java.io.DataInput

public interface DataInput
JOS replacement of a standard Java IO class.

based on kore-0.0.7 by Glynn Clements

Version:
JOS-FileSystem 4 Preview (25-Mar-98)
Author:
Glynn Clements
Author:
Stefan Reich

Method Index

 o readBoolean()
 o readByte()
 o readChar()
 o readDouble()
 o readFloat()
 o readFully(byte[])
 o readFully(byte[], int, int)
 o readInt()
 o readLine()
 o readLong()
 o readShort()
 o readUnsignedByte()
 o readUnsignedShort()
 o readUTF()
 o skipBytes(int)

Methods

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index