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

com.github.kunalk16.excel.factory.ArchiveFilesFactory Maven / Gradle / Ivy

The newest version!
package com.github.kunalk16.excel.factory;

import com.github.kunalk16.excel.factory.builder.ExcelArchiveFilesDataBuilder;
import com.github.kunalk16.excel.model.factory.ExcelArchiveFiles;

import java.io.File;

class ArchiveFilesFactory {
    static ExcelArchiveFiles create(File excelFile) {
        return new ExcelArchiveFilesDataBuilder()
                .withExcelFile(excelFile)
                .build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy