3 import java.io.BufferedInputStream;
4 import java.io.DataInputStream;
5 import java.io.InputStream;
11 public interface GenericBinaryDocument extends GenericBinaryDocumentReader {
13 GenericBinaryDocument setStream(BufferedInputStream bis, boolean isBigEndian);
15 void setStreamData(DataInputStream dataInputStream, boolean isBigEndian);
19 SB getAllDataFiles(String binaryFileList, String firstFile);
21 void getAllDataMapped(String replace, String string, Map<String, String> fileData);
23 int swapBytesI(int nx);
25 short swapBytesS(short s);
29 void setOutputChannel(GenericOutputChannel out);
31 InputStream getInputStream();
33 int readIntLE() throws Exception;
35 int readByteArray(byte[] b, int off, int len) throws Exception;