Class RepeatableAnnotationCollector.None
java.lang.Object
org.miaixz.bus.core.annotation.resolve.RepeatableAnnotationCollector.None
- All Implemented Interfaces:
RepeatableAnnotationCollector
- Enclosing interface:
RepeatableAnnotationCollector
public static class RepeatableAnnotationCollector.None
extends Object
implements RepeatableAnnotationCollector
空实现
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.miaixz.bus.core.annotation.resolve.RepeatableAnnotationCollector
RepeatableAnnotationCollector.AbstractCollector, RepeatableAnnotationCollector.Condition, RepeatableAnnotationCollector.Full, RepeatableAnnotationCollector.None, RepeatableAnnotationCollector.Standard -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAllRepeatableAnnotations(Annotation annotation) 默认返回空集合getFinalRepeatableAnnotations(Annotation annotation) 默认返回空集合<T extends Annotation>
List<T> getRepeatableAnnotations(Annotation annotation, Class<T> annotationType) 默认返回空集合
-
Constructor Details
-
None
public None()
-
-
Method Details
-
getFinalRepeatableAnnotations
默认返回空集合- Specified by:
getFinalRepeatableAnnotationsin interfaceRepeatableAnnotationCollector- Parameters:
annotation- 注解- Returns:
- 空集合
-
getAllRepeatableAnnotations
默认返回空集合- Specified by:
getAllRepeatableAnnotationsin interfaceRepeatableAnnotationCollector- Parameters:
annotation- 注解- Returns:
- 空集合
-
getRepeatableAnnotations
public <T extends Annotation> List<T> getRepeatableAnnotations(Annotation annotation, Class<T> annotationType) 默认返回空集合- Specified by:
getRepeatableAnnotationsin interfaceRepeatableAnnotationCollector- Type Parameters:
T- 注解类型- Parameters:
annotation- 注解annotationType- 注解类型- Returns:
- 空集合
-