接口 SaIsAnnotationPresentFunction

所有超级接口:
BiFunction<Method,Class<? extends Annotation>,Boolean>
函数接口:
这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

@FunctionalInterface public interface SaIsAnnotationPresentFunction extends BiFunction<Method,Class<? extends Annotation>,Boolean>
函数式接口:判断一个 Method 或其所属 Class 是否包含指定注解

参数:Method、注解

返回:是否包含

从以下版本开始:
1.35.0
作者:
click33