com.poiji.bind.mapping.PoijiPropertyHelper 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.mapping;
import com.poiji.option.PoijiOptions;
import java.io.File;
import java.io.InputStream;
/**
* Created by hakan on 24.05.2020
*/
public final class PoijiPropertyHelper {
public static HSSFPropertyFile createPoijiPropertyFile(File file, PoijiOptions options) {
return new HSSFPropertyFile(file, options);
}
public static HSSFPropertyStream createPoijiPropertyStream(InputStream inputStream, PoijiOptions options) {
return new HSSFPropertyStream(inputStream, options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy