All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.core.annotation.AggregateAnnotation Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.core.annotation;

import java.lang.annotation.Annotation;

/**
 * 表示一组被聚合在一起的注解对象
 *
 * @author huangchengxing
 */
public interface AggregateAnnotation extends Annotation {

	/**
	 * 在聚合中是否存在的指定类型注解对象
	 *
	 * @param annotationType 注解类型
	 * @return 是否
	 */
	boolean isAnnotationPresent(Class annotationType);

	/**
	 * 获取聚合中的全部注解对象
	 *
	 * @return 注解对象
	 */
	Annotation[] getAnnotations();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy