cn.hutool.core.lang.func.Consumer3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.core.lang.func;
/**
* 3参数Consumer
*
* @param 参数一类型
* @param 参数二类型
* @param 参数三类型
* @author TomXin
* @since 5.7.22
*/
@FunctionalInterface
public interface Consumer3 {
/**
* 接收参数方法
*
* @param p1 参数一
* @param p2 参数二
* @param p3 参数三
*/
void accept(P1 p1, P2 p2, P3 p3);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy