All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javajs.api.GenericBinaryDocument Maven / Gradle / Ivy

There is a newer version: 14.31.10
Show newest version
package javajs.api;

import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.io.InputStream;
import java.util.Map;


import javajs.util.SB;

public interface GenericBinaryDocument extends GenericBinaryDocumentReader {

  GenericBinaryDocument setStream(BufferedInputStream bis, boolean isBigEndian);

  void setStreamData(DataInputStream dataInputStream, boolean isBigEndian);

  long getPosition();

  SB getAllDataFiles(String binaryFileList, String firstFile);

  void getAllDataMapped(String replace, String string, Map fileData);

  int swapBytesI(int nx);

  short swapBytesS(short s);

  void seek(long i);

  void setOutputChannel(GenericOutputChannel out);

  InputStream getInputStream();

  int readIntLE() throws Exception;

  int readByteArray(byte[] b, int off, int len) throws Exception;


  void close();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy