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

de.tsl2.nano.specification.documentconsumer.ExcelWorkerConsumer Maven / Gradle / Ivy

Go to download

TSL2 Framework Specification (Pools of descripted and runnable Actions and Rules, Generic Tree)

The newest version!
package de.tsl2.nano.specification.documentconsumer;

import java.io.File;
import java.util.function.Consumer;

import de.tsl2.nano.core.util.Util;
import de.tsl2.nano.specification.ExcelWorker;

public class ExcelWorkerConsumer implements Consumer {

	@Override
	public void accept(File t) {
		Util.trY( () -> ExcelWorker.generateFromCSV(t.getAbsolutePath()));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy