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

com.poiji.bind.PoijiInputStream Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
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