File: java.io.DataInput

package info (click to toggle)
bock 0.20.2.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,228 kB
  • ctags: 1,370
  • sloc: ansic: 7,367; java: 5,553; yacc: 963; lex: 392; makefile: 243; sh: 90; perl: 42
file content (26 lines) | stat: -rw-r--r-- 1,032 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// java.io.DataInput
// An implementation of the Java Language Specification section 22.1
// Written by Charles Briscoe-Smith; refer to the file LEGAL for details.

package java.io;

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