com.github.pjfanning.xlsx.impl.ooxml.TempDataStore Maven / Gradle / Ivy
The newest version!
package com.github.pjfanning.xlsx.impl.ooxml;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* Use getOutputStream
and insert data using the stream. Read the data back using
* getOutputStream
. The implementations are not designed to be thread-safe.
*/
interface TempDataStore extends Closeable {
OutputStream getOutputStream() throws IOException;
InputStream getInputStream() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy