com.poiji.bind.PoijiInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poiji2 Show documentation
Show all versions of poiji2 Show documentation
Perfect annotation based library to read and write excel files
package com.poiji.bind;
import java.io.InputStream;
/**
* Created by hakan on 08/03/2018.
*/
public final class PoijiInputStream {
private final T t;
PoijiInputStream(T t) {
this.t = t;
}
/**
* the T derived from {@link InputStream}
* @return T
*/
public T stream() {
return t;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy