cn.hutool.core.annotation.AggregateAnnotation 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.annotation;
import java.lang.annotation.Annotation;
/**
* 表示一组被聚合在一起的注解对象
*
* @author huangchengxing
*/
public interface AggregateAnnotation extends Annotation {
/**
* 在聚合中是否存在的指定类型注解对象
*
* @param annotationType 注解类型
* @return 是否
*/
boolean isAnnotationPresent(Class extends Annotation> annotationType);
/**
* 获取聚合中的全部注解对象
*
* @return 注解对象
*/
Annotation[] getAnnotations();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy