
com.poiji.bind.PoijiInputStream Maven / Gradle / Ivy
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