Interface SaIsAnnotationPresentFunction

All Superinterfaces:
BiFunction<Method,Class<? extends Annotation>,Boolean>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

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

参数:Method、注解

返回:是否包含

Since:
1.35.0
Author:
click33