Interface SaGetAnnotationFunction

All Superinterfaces:
BiFunction<AnnotatedElement,Class<? extends Annotation>,Annotation>
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 SaGetAnnotationFunction extends BiFunction<AnnotatedElement,Class<? extends Annotation>,Annotation>
函数式接口:从元素上获取注解

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

返回:注解对象

Since:
1.35.0
Author:
click33