com.github.yiuman.citrus.support.wrapper.FunctionWrapper Maven / Gradle / Ivy
package com.github.yiuman.citrus.support.wrapper;
/**
* 可抛异常的Function
*
* @author yiuman
* @date 2020/4/3
*/
public interface FunctionWrapper {
/**
* 应用参数返回返回体
*
* @param t 参数
* @return 返回体
* @throws E 抛出的异常
*/
R apply(T t) throws E;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy