aea6f63f3ac5c16de49ad6254b162f03a50cd613
[jalview.git] / srcjar / javajs / api / GenericBinaryDocumentReader.java
1 package javajs.api;
2
3 public interface GenericBinaryDocumentReader {
4
5   byte readByte() throws Exception;
6
7   byte[] readBytes(int n) throws Exception;
8
9   int readUInt8() throws Exception;
10
11   int readInt() throws Exception;
12
13   short readShort() throws Exception;
14
15   int readUnsignedShort() throws Exception;
16
17   long readLong() throws Exception;
18
19   float readFloat() throws Exception;
20
21   double readDouble() throws Exception;
22
23   String readString(int i) throws Exception;
24
25 }