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

org.test4j.function.EFunction Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package org.test4j.function;

@FunctionalInterface
public interface EFunction {
    /**
     * 方法可以抛出异常的Function
     *
     * @param t
     * @return
     * @throws Exception
     */
    R apply(T t) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy