com.files.util.FilesInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of files-sdk Show documentation
Show all versions of files-sdk Show documentation
The Files.com Java client library provides convenient access to the Files.com API from JVM based applications.
package com.files.util;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public abstract class FilesInputStream extends InputStream implements Closeable {
@Override
public int read() throws IOException {
return 0;
}
public long transferTo(OutputStream out) throws IOException{
throw new IOException("transferTo not implemented");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy