接口 SaGetAnnotationFunction

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

@FunctionalInterface public interface SaGetAnnotationFunction extends BiFunction<AnnotatedElement,Class<? extends Annotation>,Annotation>
函数式接口:从元素上获取注解

参数:element元素,要获取的注解类型

返回:注解对象

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