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

cn.creekmoon.excelUtils.core.ExConsumer Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package cn.creekmoon.excelUtils.core;

/**
 * @author JY
 * @date 2022/1/11
 */
@FunctionalInterface
public interface ExConsumer {

    void accept(T t) throws Exception;

    public static final ExConsumer EMPTY = o -> {
    };

    public static ExConsumer empty() {
        return EMPTY;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy