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

net.lingala.zip4j.io.BaseInputStream Maven / Gradle / Ivy

package net.lingala.zip4j.io;

import java.io.IOException;
import java.io.InputStream;

import net.lingala.zip4j.unzip.UnzipEngine;

public abstract class BaseInputStream extends InputStream {

	public int read() throws IOException {
		return 0;
	}
	
	public void seek(long pos) throws IOException {
	}
	
	public int available() throws IOException {
		return 0;
	}
	
	public UnzipEngine getUnzipEngine() {
		return null;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy