Interface AnnotationMetadata
- All Superinterfaces:
AnnotationSource
- All Known Subinterfaces:
AbstractAnnotationMetadataBuilder.CachedAnnotationMetadata
,AnnotationElement
,AnnotationMetadataDelegate
,ArrayableClassElement
,BeanConstructorElement
,BeanDefinition<T>
,BeanDefinitionMethodReference<T,
,R> BeanDefinitionReference<T>
,BeanElement
,BeanElementBuilder
,BeanFieldElement
,BeanIntrospection<T>
,BeanMethodElement
,BeanParameterElement
,BeanProperty<B,
,T> BeanReadProperty<B,
,T> BeanWriteProperty<B,
,T> ClassElement
,ConfigurableElement
,ConstructorElement
,ConstructorInvocationContext<T>
,DelegatingBeanDefinition<T>
,DelegatingExecutableMethod<T,
,R> DisposableBeanDefinition<T>
,Element
,ElementAnnotationMetadata
,ElementMutableAnnotationMetadataDelegate<R>
,EnumBeanIntrospection<E>
,EnumBeanIntrospection.EnumConstant<E>
,EnumConstantElement
,EnumElement
,ExecutableMethod<T,
,R> ExecutionHandle<T,
,R> FieldElement
,GenericElement
,GenericPlaceholderElement
,InitializingBeanDefinition<T>
,InjectableBeanDefinition<T>
,InjectableElement
,InstantiatableBeanDefinition<T>
,InvocationContext<T,
,R> KotlinParameterElement
,MemberElement
,MethodBasedRouteMatch<T,
,R> MethodElement
,MethodExecutionHandle<T,
,R> MethodInvocationContext<T,
,R> MethodReference<T,
,R> MutableAnnotationMetadataDelegate<R>
,PackageElement
,ParameterElement
,ParametrizedInstantiatableBeanDefinition<T>
,PropertyElement
,ProxyBeanDefinition<T>
,QualifiedBeanType<T>
,RuntimeBeanDefinition<T>
,TypedElement
,UnsafeBeanInstantiationIntrospection<T>
,UnsafeBeanProperty<B,
,T> UnsafeBeanReadProperty<B,
,T> UnsafeBeanWriteProperty<B,
,T> UnsafeExecutionHandle<T,
,R> UriRouteMatch<T,
,R> ValidatedBeanDefinition<T>
,WildcardElement
- All Known Implementing Classes:
AbstractAnnotationElement
,AbstractBeanDefinitionBuilder
,AbstractBeanProperty
,AbstractElementAnnotationMetadata
,AbstractElementAnnotationMetadataFactory.AbstractElementAnnotationMetadata
,AbstractElementAnnotationMetadataFactory.MutableElementAnnotationMetadata
,AbstractEnumBeanIntrospectionAndReference
,AbstractEnumBeanIntrospectionAndReference.EnumConstantRef
,AbstractEnvironmentAnnotationMetadata
,AbstractExecutableBeanMethod
,AbstractExecutableMethod
,AbstractGroovyElement
,AbstractInitializableBeanDefinition
,AbstractInitializableBeanDefinitionAndReference
,AbstractInitializableBeanDefinitionReference
,AbstractInitializableBeanIntrospection
,AbstractInitializableBeanIntrospectionAndReference
,AbstractJavaElement
,AbstractMutableAnnotationMetadata
,AbstractProviderDefinition
,AnnotationMetadataHierarchy
,AnnotationMetadataReference
,ApplicationEventPublisherFactory
,BeanDefinitionWriter
,BeanProviderDefinition
,ConstructorInterceptorChain
,DefaultAnnotationMetadata
,DisabledBean
,EvaluatedAnnotationMetadata
,GenericPlaceholderElementAnnotationMetadata
,GroovyClassElement
,GroovyConstructorElement
,GroovyEnumConstantElement
,GroovyFieldElement
,GroovyMethodElement
,GroovyPackageElement
,GroovyParameterElement
,InterceptorChain
,InterceptorRegistryBean
,JakartaProviderBeanDefinition
,JavaClassElement
,JavaMethodElement
,JavaPackageElement
,JavaxProviderBeanDefinition
,MappingAnnotationMetadataDelegate
,MethodElementAnnotationMetadata
,MethodInterceptorChain
,MutableAnnotationMetadata
,MutatedMethodElementAnnotationMetadata
,PrimitiveElement
,PropertyElementAnnotationMetadata
,WildcardElementAnnotationMetadata
An interface implemented at compile time by Micronaut that allows the inspection of annotation metadata and stereotypes (meta-annotations)
.This interface exposes fast and efficient means to expose annotation data at runtime without requiring reflective tricks to read the annotation metadata
Users of Micronaut should in general avoid the methods of the AnnotatedElement
interface and use this interface instead to obtain maximum efficiency
Core framework types such as io.micronaut.inject.BeanDefinition
and
io.micronaut.inject.ExecutableMethod
implement this interface
- Since:
- 1.0
- Author:
- Graeme Rocher
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The suffix used when saving compiled metadata to classes.static final AnnotationMetadata
A constant for representing empty metadata.static final String
The defaultvalue()
member.Fields inherited from interface io.micronaut.core.annotation.AnnotationSource
EMPTY
-
Method Summary
Modifier and TypeMethodDescriptionbooleanValue
(@NonNull Class<? extends Annotation> annotation) The value as an optional boolean for the given annotation and member.booleanValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member) The value as an optional boolean for the given annotation and member.booleanValue
(@NonNull String annotation) The value as an optional boolean for the given annotation and member.booleanValue
(@NonNull String annotation, @NonNull String member) The value as an optional boolean for the given annotation and member.classValue
(@NonNull Class<? extends Annotation> annotation) The value of the annotation as a Class.classValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member) The value of the annotation as a Class.classValue
(@NonNull String annotation) The value of the annotation as a Class.classValue
(@NonNull String annotation, @NonNull String member) The value of the annotation as a Class.classValues
(@NonNull Class<? extends Annotation> annotation) The value of the annotation as a Class.classValues
(@NonNull Class<? extends Annotation> annotation, @NonNull String member) The value of the annotation as a Class.classValues
(@NonNull String annotation) The value of the annotation as a Class.classValues
(@NonNull String annotation, @NonNull String member) The value of the annotation as a Class.default @NonNull AnnotationMetadata
Makes a copy of the annotation or returns this.default @NonNull OptionalDouble
doubleValue
(@NonNull Class<? extends Annotation> annotation) The value as anOptionalDouble
for the given annotation and member.default @NonNull OptionalDouble
doubleValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member) The value as anOptionalDouble
for the given annotation and member.default @NonNull OptionalDouble
doubleValue
(@NonNull String annotation, @NonNull String member) The value as anOptionalDouble
for the given annotation and member.enumValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member, Class<E> enumType) The value of the annotation as a Class.enumValue
(@NonNull Class<? extends Annotation> annotation, Class<E> enumType) The value of the annotation as a Class.The value of the annotation as a Class.The value of the given enum.default <E extends Enum<E>>
E[]enumValues
(@NonNull Class<? extends Annotation> annotation, @NonNull String member, Class<E> enumType) The enum values for the given annotation.default <E extends Enum<E>>
E[]enumValues
(@NonNull Class<? extends Annotation> annotation, Class<E> enumType) The enum values for the given annotation.default <E extends Enum<E>>
E[]The enum values for the given annotation.default <E extends Enum<E>>
E[]enumValues
(@NonNull String annotation, Class<E> enumType) The enum values for the given annotation.enumValuesSet
(@NonNull Class<? extends Annotation> annotation, @NonNull String member, Class<E> enumType) The enum values for the given annotation.The enum values for the given annotation.default <T extends Annotation>
Optional<AnnotationValue<T>>findAnnotation
(@NonNull Class<T> annotationClass) Get all values for the given annotation.default <T extends Annotation>
Optional<AnnotationValue<T>>findDeclaredAnnotation
(@NonNull Class<T> annotationClass) Get all values for the given annotation that are directly declared on the annotated element.findRepeatableAnnotation
(@NonNull Class<? extends Annotation> annotation) Find repeatable annotation container.findRepeatableAnnotation
(@NonNull String annotation) Find repeatable annotation container.getAnnotationNameByStereotype
(@NonNull Class<? extends Annotation> stereotype) Find the first annotation name for the given stereotype.getAnnotationNameByStereotype
(@Nullable String stereotype) Find the first annotation name for the given stereotype.All the annotation names this metadata declares.getAnnotationNamesByStereotype
(@NonNull Class<? extends Annotation> stereotype) Resolve all annotation names that feature the given stereotype.getAnnotationNamesByStereotype
(@Nullable String stereotype) Resolve all annotation names that feature the given stereotype.default Optional<Class<? extends Annotation>>
getAnnotationType
(@NonNull String name) Gets the type for a given annotation if it is present on the classpath.default Optional<Class<? extends Annotation>>
getAnnotationType
(@NonNull String name, @NonNull ClassLoader classLoader) Gets the type for a given annotation if it is present on the classpath.default Optional<Class<? extends Annotation>>
getAnnotationTypeByStereotype
(@NonNull Class<? extends Annotation> stereotype) Find the first annotation name for the given stereotype.default Optional<Class<? extends Annotation>>
getAnnotationTypeByStereotype
(@Nullable String stereotype) Find the first annotation name for the given stereotype.default @NonNull List<Class<? extends Annotation>>
getAnnotationTypesByStereotype
(@NonNull Class<? extends Annotation> stereotype) Resolve all annotation names that feature the given stereotype.default @NonNull List<Class<? extends Annotation>>
getAnnotationTypesByStereotype
(@NonNull Class<? extends Annotation> stereotype, @NonNull ClassLoader classLoader) Resolve all annotation names that feature the given stereotype.default @NonNull List<Class<? extends Annotation>>
getAnnotationTypesByStereotype
(@NonNull String stereotype) Resolve all annotation names that feature the given stereotype.default <T extends Annotation>
@NonNull List<AnnotationValue<T>>getAnnotationValuesByName
(@NonNull String annotationType) Gets all the annotation values by the given repeatable type name.default <T extends Annotation>
@NonNull List<AnnotationValue<T>>getAnnotationValuesByStereotype
(@Nullable String stereotype) Resolve all annotation values that feature the given stereotype.default <T extends Annotation>
@NonNull List<AnnotationValue<T>>getAnnotationValuesByType
(@NonNull Class<T> annotationType) Gets all the annotation values by the given repeatable type.getDeclaredAnnotationNameByStereotype
(@Nullable String stereotype) Find the first annotation name for the given stereotype.All the declared annotation names this metadata declares.getDeclaredAnnotationNamesByStereotype
(@Nullable String stereotype) Resolve all annotations names for the given stereotype that are declared annotations.default Optional<Class<? extends Annotation>>
getDeclaredAnnotationTypeByStereotype
(@NonNull Class<? extends Annotation> stereotype) Find the first declared annotation name for the given stereotype.default Optional<Class<? extends Annotation>>
getDeclaredAnnotationTypeByStereotype
(@Nullable String stereotype) Find the first annotation name for the given stereotype.default <T extends Annotation>
@NonNull List<AnnotationValue<T>>getDeclaredAnnotationValuesByName
(@NonNull String annotationType) Gets only declared annotation values by the given repeatable type name.default <T extends Annotation>
@NonNull List<AnnotationValue<T>>getDeclaredAnnotationValuesByType
(@NonNull Class<T> annotationType) Gets only declared annotation values by the given repeatable type.default @NonNull AnnotationMetadata
Gets the declared metadata without inherited metdata.Returns the names of the annotations which are declared stereotypes.default <T> Optional<T>
getDefaultValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member, @NonNull Argument<T> requiredType) Return the default value for the given annotation member.default <T> Optional<T>
getDefaultValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member, @NonNull Class<T> requiredType) Return the default value for the given annotation member.default <T> Optional<T>
getDefaultValue
(@NonNull String annotation, @NonNull String member, @NonNull Argument<T> requiredType) Return the default value for the given annotation member.default <T> Optional<T>
Return the default value for the given annotation member.default @NonNull Map<CharSequence,
Object> getDefaultValues
(@NonNull String annotation) Return the default values for the given annotation name.Returns the names of the annotations which are stereotypes.default @NonNull AnnotationMetadata
Unwraps possible a possible delegate or a provider, returns this otherwise.getValue
(@NonNull Class<? extends Annotation> annotation) Get the value of default "value" the given annotation.Get the value of default "value" the given annotation.Get the value of default "value" the given annotation.Get the value of the given annotation member.default <T> Optional<T>
getValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member, @NonNull Argument<T> requiredType) Get the value of the given annotation member.default <T> Optional<T>
getValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member, @NonNull Class<T> requiredType) Get the value of the given annotation member.Get the value of default "value" the given annotation.Get the value of default "value" the given annotation.Get the value of default "value" the given annotation.Get the value of the given annotation member.default <T> Optional<T>
Get the value of the given annotation member.default <T> Optional<T>
Get the value of the given annotation member.default <T> @NonNull OptionalValues<T>
Get all values for the given annotation.default @NonNull Map<CharSequence,
Object> Get all values for the given annotation and type of the underlying values.default <T> @NonNull OptionalValues<T>
Get all values for the given annotation and type of the underlying values.default boolean
hasAnnotation
(@Nullable Class<? extends Annotation> annotation) Checks whether this object has the given annotation on the object itself or inherited from a parent.default boolean
hasAnnotation
(@Nullable String annotation) Checks whether this object has the given annotation on the object itself or inherited from a parent.default boolean
hasDeclaredAnnotation
(@Nullable Class<? extends Annotation> annotation) Checks whether this object has the given annotation directly declared on the object.default boolean
hasDeclaredAnnotation
(@Nullable String annotation) Checks whether this object has the given annotation directly declared on the object.default boolean
hasDeclaredStereotype
(@Nullable Class<? extends Annotation> stereotype) Checks whether this object has the given stereotype directly declared on the object.default boolean
hasDeclaredStereotype
(@Nullable Class<? extends Annotation>... annotations) Checks whether this object has any of the given stereotype directly declared on the object.default boolean
hasDeclaredStereotype
(@Nullable String annotation) Checks whether this object has the given annotation stereotype on the object itself and not inherited from a parentdefault boolean
hasDeclaredStereotype
(@Nullable String... annotations) Checks whether this object has any of the given stereotype directly declared on the object.default boolean
Does the metadata contain any evaluated expressions like#{ T(java.lang.Math).random() }
.default boolean
Does the metadata contain any property expressions like${foo.bar}
.default boolean
hasSimpleAnnotation
(@Nullable String annotation) Checks whether the given annotation simple name (name without the package) is present in the annotations.default boolean
hasSimpleDeclaredAnnotation
(@Nullable String annotation) Checks whether the given annotation simple name (name without the package) is present in the declared annotations.default boolean
hasStereotype
(@Nullable Class<? extends Annotation> annotation) Checks whether this object has the given annotation stereotype on the object itself or inherited from a parentdefault boolean
hasStereotype
(@Nullable Class<? extends Annotation>... annotations) Check whether any of the given stereotypes is present.default boolean
hasStereotype
(@Nullable String annotation) Checks whether this object has the given annotation stereotype on the object itself or inherited from a parentdefault boolean
hasStereotype
(@Nullable String[] annotations) Check whether any of the given stereotypes is present.default boolean
hasStereotypeNonRepeating
(@NonNull Class<? extends Annotation> annotation) Faster version ofhasStereotype(Class)
that does not support repeatable annotations.default OptionalInt
intValue
(@NonNull Class<? extends Annotation> annotation) The value as anOptionalInt
for the given annotation and member.default OptionalInt
The value as anOptionalInt
for the given annotation and member.default OptionalInt
The value as anOptionalInt
for the given annotation and member.default boolean
isAnnotationPresent
(@NonNull Class<? extends Annotation> annotationClass) Return whether an annotation is present.default boolean
isAnnotationPresent
(@NonNull String annotationName) Return whether an annotation is present.default boolean
isDeclaredAnnotationPresent
(@NonNull Class<? extends Annotation> annotationClass) Variation ofAnnotationSource.isAnnotationPresent(Class)
for declared annotations.default boolean
isDeclaredAnnotationPresent
(@NonNull String annotationName) Variation ofAnnotationSource.isAnnotationPresent(String)
for declared annotations.default boolean
isEmpty()
Is the annotation metadata empty.default boolean
Returns whether the value of the given member is true.default boolean
Returns whether the value of the given member is true.default boolean
Returns whether the value of the given member is present.default boolean
Returns whether the value of the given member is present.default boolean
isRepeatableAnnotation
(@NonNull Class<? extends Annotation> annotation) Is repeatable annotation?default boolean
isRepeatableAnnotation
(@NonNull String annotation) Is repeatable annotation?default boolean
Returns whether the value of the given member is true.default boolean
Returns whether the value of the given member is true.default OptionalLong
The value as anOptionalLong
for the given annotation and member.default OptionalLong
The value as anOptionalLong
for the given annotation and member.stringValue
(@NonNull Class<? extends Annotation> annotation) The value as an optional string for the given annotation and member.stringValue
(@NonNull Class<? extends Annotation> annotation, @NonNull String member) The value as an optional string for the given annotation and member.stringValue
(@NonNull String annotation) The value as an optional string for the given annotation and member.stringValue
(@NonNull String annotation, @NonNull String member) The value as an optional string for the given annotation and member.stringValues
(@NonNull Class<? extends Annotation> annotation) The values as string array for the given annotation and member.stringValues
(@NonNull Class<? extends Annotation> annotation, @NonNull String member) The values as string array for the given annotation and member.stringValues
(@NonNull String annotation) The values as string array for the given annotation and member.stringValues
(@NonNull String annotation, @NonNull String member) The values as string array for the given annotation and member.Methods inherited from interface io.micronaut.core.annotation.AnnotationSource
findAnnotation, findDeclaredAnnotation, getAnnotation, getAnnotation, getDeclaredAnnotation, getDeclaredAnnotation, synthesize, synthesize, synthesizeAll, synthesizeAnnotationsByType, synthesizeDeclared, synthesizeDeclared, synthesizeDeclared, synthesizeDeclaredAnnotationsByType
-
Field Details
-
EMPTY_METADATA
A constant for representing empty metadata. -
VALUE_MEMBER
The defaultvalue()
member.- See Also:
-
CLASS_NAME_SUFFIX
The suffix used when saving compiled metadata to classes.- See Also:
-
-
Method Details
-
getDeclaredMetadata
Gets the declared metadata without inherited metdata.- Returns:
- The declared metadata
- Since:
- 3.0.0
-
hasPropertyExpressions
default boolean hasPropertyExpressions()Does the metadata contain any property expressions like${foo.bar}
. Note this by default returnstrue
as previous versions of Micronaut must assume metadata is present. The compilation time this is computed in order to decide whether to instrument annotation metadata with environment specific logic.- Returns:
- True if property expressions are present
-
hasEvaluatedExpressions
default boolean hasEvaluatedExpressions()Does the metadata contain any evaluated expressions like#{ T(java.lang.Math).random() }
.- Returns:
- True if evaluated expressions are present
- Since:
- 4.0.0
-
getAnnotationNamesByStereotype
@NonNull default @NonNull List<String> getAnnotationNamesByStereotype(@Nullable @Nullable String stereotype) Resolve all annotation names that feature the given stereotype.- Parameters:
stereotype
- The annotation names- Returns:
- A set of annotation names
-
getAnnotationValuesByStereotype
@NonNull default <T extends Annotation> @NonNull List<AnnotationValue<T>> getAnnotationValuesByStereotype(@Nullable @Nullable String stereotype) Resolve all annotation values that feature the given stereotype.- Type Parameters:
T
- The annotation type- Parameters:
stereotype
- The annotation names- Returns:
- A set of annotation names
- Since:
- 3.5.2
-
getAnnotationNames
All the annotation names this metadata declares.- Returns:
- All the annotation names this metadata declares
-
getStereotypeAnnotationNames
Returns the names of the annotations which are stereotypes.A stereotype is a meta-annotation (an annotation declared on another annotation).
- Returns:
- The names of the stereotype annotations
- Since:
- 3.4.1
- See Also:
-
getDeclaredStereotypeAnnotationNames
Returns the names of the annotations which are declared stereotypes.A stereotype is a meta-annotation (an annotation declared on another annotation).
A stereotype is considered declared when it it is a meta-annotation that is present on an annotation directly declared on the element and not inherited from a super class.
- Returns:
- The names of the stereotype annotations
- Since:
- 3.4.1
- See Also:
-
getDeclaredAnnotationNames
All the declared annotation names this metadata declares.- Returns:
- All the declared annotation names this metadata declares
-
getDeclaredAnnotationNamesByStereotype
@NonNull default @NonNull List<String> getDeclaredAnnotationNamesByStereotype(@Nullable @Nullable String stereotype) Resolve all annotations names for the given stereotype that are declared annotations.- Parameters:
stereotype
- The stereotype- Returns:
- The declared annotations
-
getValues
@NonNull default <T> @NonNull OptionalValues<T> getValues(@NonNull @NonNull String annotation, @NonNull @NonNull Class<T> valueType) Get all values for the given annotation and type of the underlying values.- Type Parameters:
T
- Generic type- Parameters:
annotation
- The annotation namevalueType
- valueType- Returns:
- The
OptionalValues
-
getValues
Get all values for the given annotation and type of the underlying values.- Parameters:
annotation
- The annotation name- Returns:
- An immutable map of values
-
getDefaultValue
default <T> Optional<T> getDefaultValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member, @NonNull @NonNull Argument<T> requiredType) Return the default value for the given annotation member.- Type Parameters:
T
- The required generic type- Parameters:
annotation
- The annotationmember
- The memberrequiredType
- The required type- Returns:
- An optional value
-
getAnnotationValuesByType
@NonNull default <T extends Annotation> @NonNull List<AnnotationValue<T>> getAnnotationValuesByType(@NonNull @NonNull Class<T> annotationType) Gets all the annotation values by the given repeatable type.- Type Parameters:
T
- The annotation type- Parameters:
annotationType
- The annotation type- Returns:
- A list of values
-
getAnnotationValuesByName
@NonNull default <T extends Annotation> @NonNull List<AnnotationValue<T>> getAnnotationValuesByName(@NonNull @NonNull String annotationType) Gets all the annotation values by the given repeatable type name.- Type Parameters:
T
- The annotation type- Parameters:
annotationType
- The annotation type- Returns:
- A list of values
- Since:
- 3.2.4
-
getDeclaredAnnotationValuesByType
@NonNull default <T extends Annotation> @NonNull List<AnnotationValue<T>> getDeclaredAnnotationValuesByType(@NonNull @NonNull Class<T> annotationType) Gets only declared annotation values by the given repeatable type.- Type Parameters:
T
- The annotation type- Parameters:
annotationType
- The annotation type- Returns:
- A list of values
-
getDeclaredAnnotationValuesByName
@NonNull default <T extends Annotation> @NonNull List<AnnotationValue<T>> getDeclaredAnnotationValuesByName(@NonNull @NonNull String annotationType) Gets only declared annotation values by the given repeatable type name.- Type Parameters:
T
- The annotation type- Parameters:
annotationType
- The annotation type- Returns:
- A list of values
- Since:
- 3.2.4
-
hasDeclaredAnnotation
Checks whether this object has the given annotation directly declared on the object.- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasAnnotation
Checks whether this object has the given annotation on the object itself or inherited from a parent.- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasSimpleAnnotation
Checks whether the given annotation simple name (name without the package) is present in the annotations.- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasSimpleDeclaredAnnotation
Checks whether the given annotation simple name (name without the package) is present in the declared annotations.- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasStereotype
Checks whether this object has the given annotation stereotype on the object itself or inherited from a parent
.An annotation stereotype is a meta annotation potentially applied to another annotation
- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasDeclaredStereotype
Checks whether this object has the given annotation stereotype on the object itself and not inherited from a parent
.An annotation stereotype is a meta annotation potentially applied to another annotation
- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasDeclaredStereotype
Checks whether this object has any of the given stereotype directly declared on the object.- Parameters:
annotations
- The annotations- Returns:
- True if any of the given stereotypes are present
- Since:
- 2.3.3
-
getDefaultValues
@NonNull default @NonNull Map<CharSequence,Object> getDefaultValues(@NonNull @NonNull String annotation) Return the default values for the given annotation name.- Parameters:
annotation
- The annotation name- Returns:
- The default values
-
getDefaultValue
default <T> Optional<T> getDefaultValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member, @NonNull @NonNull Class<T> requiredType) Return the default value for the given annotation member.- Type Parameters:
T
- The required generic type- Parameters:
annotation
- The annotationmember
- The memberrequiredType
- The required type- Returns:
- An optional value
-
getDefaultValue
default <T> Optional<T> getDefaultValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member, @NonNull @NonNull Argument<T> requiredType) Return the default value for the given annotation member.- Type Parameters:
T
- The required generic type- Parameters:
annotation
- The annotationmember
- The memberrequiredType
- The required type- Returns:
- An optional value
-
isAnnotationPresent
Description copied from interface:AnnotationSource
Return whether an annotation is present.- Specified by:
isAnnotationPresent
in interfaceAnnotationSource
- Parameters:
annotationClass
- The annotation class- Returns:
- True if it is
- See Also:
-
isDeclaredAnnotationPresent
default boolean isDeclaredAnnotationPresent(@NonNull @NonNull Class<? extends Annotation> annotationClass) Description copied from interface:AnnotationSource
Variation ofAnnotationSource.isAnnotationPresent(Class)
for declared annotations.- Specified by:
isDeclaredAnnotationPresent
in interfaceAnnotationSource
- Parameters:
annotationClass
- The annotation class- Returns:
- True if it is
- See Also:
-
isAnnotationPresent
Description copied from interface:AnnotationSource
Return whether an annotation is present.- Specified by:
isAnnotationPresent
in interfaceAnnotationSource
- Parameters:
annotationName
- The annotation name- Returns:
- True if it is
- See Also:
-
isDeclaredAnnotationPresent
Description copied from interface:AnnotationSource
Variation ofAnnotationSource.isAnnotationPresent(String)
for declared annotations.- Specified by:
isDeclaredAnnotationPresent
in interfaceAnnotationSource
- Parameters:
annotationName
- The annotation name- Returns:
- True if it is
- See Also:
-
getDefaultValue
default <T> Optional<T> getDefaultValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member, @NonNull @NonNull Class<T> requiredType) Return the default value for the given annotation member.- Type Parameters:
T
- The required generic type- Parameters:
annotation
- The annotationmember
- The memberrequiredType
- The required type- Returns:
- An optional value
-
getValue
default <T> Optional<T> getValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member, @NonNull @NonNull Class<T> requiredType) Get the value of the given annotation member.- Type Parameters:
T
- The value- Parameters:
annotation
- The annotation classmember
- The annotation memberrequiredType
- The required type- Returns:
- An
Optional
of the value
-
getValue
default <T> Optional<T> getValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member, @NonNull @NonNull Argument<T> requiredType) Get the value of the given annotation member.- Type Parameters:
T
- The value- Parameters:
annotation
- The annotation classmember
- The annotation memberrequiredType
- The required type- Returns:
- An
Optional
of the value
-
getAnnotationNameByStereotype
Find the first annotation name for the given stereotype.- Parameters:
stereotype
- The stereotype- Returns:
- The annotation name
-
getDeclaredAnnotationNameByStereotype
default Optional<String> getDeclaredAnnotationNameByStereotype(@Nullable @Nullable String stereotype) Find the first annotation name for the given stereotype.- Parameters:
stereotype
- The stereotype- Returns:
- The annotation name
-
getAnnotationTypeByStereotype
default Optional<Class<? extends Annotation>> getAnnotationTypeByStereotype(@NonNull @NonNull Class<? extends Annotation> stereotype) Find the first annotation name for the given stereotype.- Parameters:
stereotype
- The stereotype- Returns:
- The annotation name
-
getDeclaredAnnotationTypeByStereotype
default Optional<Class<? extends Annotation>> getDeclaredAnnotationTypeByStereotype(@NonNull @NonNull Class<? extends Annotation> stereotype) Find the first declared annotation name for the given stereotype.- Parameters:
stereotype
- The stereotype- Returns:
- The annotation name
-
getDeclaredAnnotationTypeByStereotype
default Optional<Class<? extends Annotation>> getDeclaredAnnotationTypeByStereotype(@Nullable @Nullable String stereotype) Find the first annotation name for the given stereotype.- Parameters:
stereotype
- The stereotype- Returns:
- The annotation name
-
getAnnotationType
default Optional<Class<? extends Annotation>> getAnnotationType(@NonNull @NonNull String name, @NonNull @NonNull ClassLoader classLoader) Gets the type for a given annotation if it is present on the classpath. Subclasses can potentially override to provide optimized loading.- Parameters:
name
- The type nameclassLoader
- The ClassLoader to load the type- Returns:
- The type if present
-
getAnnotationType
Gets the type for a given annotation if it is present on the classpath. Subclasses can potentially override to provide optimized loading.- Parameters:
name
- The type name- Returns:
- The type if present
-
getAnnotationTypeByStereotype
default Optional<Class<? extends Annotation>> getAnnotationTypeByStereotype(@Nullable @Nullable String stereotype) Find the first annotation name for the given stereotype.- Parameters:
stereotype
- The stereotype- Returns:
- The annotation name
-
getAnnotationNameByStereotype
default Optional<String> getAnnotationNameByStereotype(@NonNull @NonNull Class<? extends Annotation> stereotype) Find the first annotation name for the given stereotype.- Parameters:
stereotype
- The stereotype- Returns:
- The annotation name
-
getValues
@NonNull default <T> @NonNull OptionalValues<T> getValues(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull Class<T> valueType) Get all values for the given annotation.- Type Parameters:
T
- Generic type- Parameters:
annotation
- The annotation namevalueType
- valueType- Returns:
- The
OptionalValues
-
getAnnotationNamesByStereotype
@NonNull default @NonNull List<String> getAnnotationNamesByStereotype(@NonNull @NonNull Class<? extends Annotation> stereotype) Resolve all annotation names that feature the given stereotype.- Parameters:
stereotype
- The annotation names- Returns:
- A set of annotation names
-
getAnnotationTypesByStereotype
@NonNull default @NonNull List<Class<? extends Annotation>> getAnnotationTypesByStereotype(@NonNull @NonNull Class<? extends Annotation> stereotype) Resolve all annotation names that feature the given stereotype.- Parameters:
stereotype
- The annotation names- Returns:
- A set of annotation names
-
getAnnotationTypesByStereotype
@NonNull default @NonNull List<Class<? extends Annotation>> getAnnotationTypesByStereotype(@NonNull @NonNull String stereotype) Resolve all annotation names that feature the given stereotype.- Parameters:
stereotype
- The annotation names- Returns:
- A set of annotation names
-
getAnnotationTypesByStereotype
@NonNull default @NonNull List<Class<? extends Annotation>> getAnnotationTypesByStereotype(@NonNull @NonNull Class<? extends Annotation> stereotype, @NonNull @NonNull ClassLoader classLoader) Resolve all annotation names that feature the given stereotype.- Parameters:
stereotype
- The annotation namesclassLoader
- The classloader to load annotation type- Returns:
- A set of annotation names
-
findAnnotation
default <T extends Annotation> Optional<AnnotationValue<T>> findAnnotation(@NonNull @NonNull Class<T> annotationClass) Get all values for the given annotation.- Specified by:
findAnnotation
in interfaceAnnotationSource
- Type Parameters:
T
- The annotation type- Parameters:
annotationClass
- The annotation name- Returns:
- The
AnnotationValue
-
findDeclaredAnnotation
default <T extends Annotation> Optional<AnnotationValue<T>> findDeclaredAnnotation(@NonNull @NonNull Class<T> annotationClass) Description copied from interface:AnnotationSource
Get all values for the given annotation that are directly declared on the annotated element.- Specified by:
findDeclaredAnnotation
in interfaceAnnotationSource
- Type Parameters:
T
- The annotation type- Parameters:
annotationClass
- The annotation name- Returns:
- A
AnnotationValue
instance
-
getValue
default <T> Optional<T> getValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member, @NonNull @NonNull Class<T> requiredType) Get the value of the given annotation member.- Type Parameters:
T
- The value- Parameters:
annotation
- The annotation classmember
- The annotation memberrequiredType
- The required type- Returns:
- An
Optional
of the value
-
getValue
default <T> Optional<T> getValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member, @NonNull @NonNull Argument<T> requiredType) Get the value of the given annotation member.- Type Parameters:
T
- The value- Parameters:
annotation
- The annotation classmember
- The annotation memberrequiredType
- The required type- Returns:
- An
Optional
of the value
-
longValue
default OptionalLong longValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member) The value as anOptionalLong
for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- THe
OptionalLong
value
-
longValue
default OptionalLong longValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The value as anOptionalLong
for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- THe
OptionalLong
value
-
enumValue
default <E extends Enum<E>> Optional<E> enumValue(@NonNull @NonNull String annotation, Class<E> enumType) The value of the given enum.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationenumType
- The enum type- Returns:
- An
Optional
enum value
-
enumValue
default <E extends Enum<E>> Optional<E> enumValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member, Class<E> enumType) The value of the annotation as a Class.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationmember
- The annotation memberenumType
- The enum type- Returns:
- An
Optional
class
-
enumValue
default <E extends Enum<E>> Optional<E> enumValue(@NonNull @NonNull Class<? extends Annotation> annotation, Class<E> enumType) The value of the annotation as a Class.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationenumType
- The enum type- Returns:
- An
Optional
class
-
enumValue
default <E extends Enum<E>> Optional<E> enumValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member, Class<E> enumType) The value of the annotation as a Class.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationmember
- The annotation memberenumType
- The enum type- Returns:
- An
Optional
class
-
enumValues
The enum values for the given annotation.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationenumType
- The enum type- Returns:
- An array of enum values
-
enumValues
default <E extends Enum<E>> E[] enumValues(@NonNull @NonNull String annotation, @NonNull @NonNull String member, Class<E> enumType) The enum values for the given annotation.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationmember
- The annotation memberenumType
- The enum type- Returns:
- An array of enum values
-
enumValuesSet
default <E extends Enum<E>> EnumSet<E> enumValuesSet(@NonNull @NonNull String annotation, @NonNull @NonNull String member, Class<E> enumType) The enum values for the given annotation.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationmember
- The annotation memberenumType
- The enum type- Returns:
- An enum set of enum values
- Since:
- 4.0.0
-
enumValues
default <E extends Enum<E>> E[] enumValues(@NonNull @NonNull Class<? extends Annotation> annotation, Class<E> enumType) The enum values for the given annotation.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationenumType
- The enum type- Returns:
- An array of enum values
-
enumValues
default <E extends Enum<E>> E[] enumValues(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member, Class<E> enumType) The enum values for the given annotation.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationmember
- The annotation memberenumType
- The enum type- Returns:
- An array of enum values
-
enumValuesSet
default <E extends Enum<E>> EnumSet<E> enumValuesSet(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member, Class<E> enumType) The enum values for the given annotation.- Type Parameters:
E
- The enum type- Parameters:
annotation
- The annotationmember
- The annotation memberenumType
- The enum type- Returns:
- An enum set of enum values
- Since:
- 4.0.0
-
classValues
The value of the annotation as a Class.- Type Parameters:
T
- The type of the class- Parameters:
annotation
- The annotation- Returns:
- An
Optional
class
-
classValues
@NonNull default <T> @NonNull Class<T>[] classValues(@NonNull @NonNull String annotation, @NonNull @NonNull String member) The value of the annotation as a Class.- Type Parameters:
T
- The type of the class- Parameters:
annotation
- The annotationmember
- The annotation member- Returns:
- An
Optional
class
-
classValues
@NonNull default <T> @NonNull Class<T>[] classValues(@NonNull @NonNull Class<? extends Annotation> annotation) The value of the annotation as a Class.- Type Parameters:
T
- The type of the class- Parameters:
annotation
- The annotation- Returns:
- An
Optional
class
-
classValues
@NonNull default <T> @NonNull Class<T>[] classValues(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The value of the annotation as a Class.- Type Parameters:
T
- The type of the class- Parameters:
annotation
- The annotationmember
- The annotation member- Returns:
- An
Optional
class
-
classValue
The value of the annotation as a Class.- Parameters:
annotation
- The annotation- Returns:
- An
Optional
class
-
classValue
default Optional<Class> classValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member) The value of the annotation as a Class.- Parameters:
annotation
- The annotationmember
- The annotation member- Returns:
- An
Optional
class
-
classValue
The value of the annotation as a Class.- Parameters:
annotation
- The annotation- Returns:
- An
Optional
class
-
classValue
default Optional<Class> classValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The value of the annotation as a Class.- Parameters:
annotation
- The annotationmember
- The annotation member- Returns:
- An
Optional
class
-
intValue
The value as anOptionalInt
for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- THe
OptionalInt
value
-
intValue
default OptionalInt intValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The value as anOptionalInt
for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- THe
OptionalInt
value
-
intValue
The value as anOptionalInt
for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- THe
OptionalInt
value
-
stringValue
default Optional<String> stringValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member) The value as an optional string for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- The string value if it is present
-
stringValue
default Optional<String> stringValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The value as an optional string for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- The string value if it is present
-
stringValue
@NonNull default @NonNull Optional<String> stringValue(@NonNull @NonNull Class<? extends Annotation> annotation) The value as an optional string for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- The string value if it is present
-
stringValue
The value as an optional string for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- The string value if it is present
-
booleanValue
default Optional<Boolean> booleanValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member) The value as an optional boolean for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- The string value if it is present
-
booleanValue
default Optional<Boolean> booleanValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The value as an optional boolean for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- The string value if it is present
-
booleanValue
@NonNull default @NonNull Optional<Boolean> booleanValue(@NonNull @NonNull Class<? extends Annotation> annotation) The value as an optional boolean for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- The string value if it is present
-
booleanValue
The value as an optional boolean for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- The string value if it is present
-
stringValues
@NonNull default @NonNull String[] stringValues(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The values as string array for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- The string values if it is present
-
stringValues
@NonNull default @NonNull String[] stringValues(@NonNull @NonNull Class<? extends Annotation> annotation) The values as string array for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- The string values if it is present
-
stringValues
@NonNull default @NonNull String[] stringValues(@NonNull @NonNull String annotation, @NonNull @NonNull String member) The values as string array for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- The string values if it is present
-
stringValues
The values as string array for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- The string values if it is present
-
doubleValue
@NonNull default @NonNull OptionalDouble doubleValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member) The value as anOptionalDouble
for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- THe
OptionalDouble
value
-
doubleValue
@NonNull default @NonNull OptionalDouble doubleValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) The value as anOptionalDouble
for the given annotation and member.- Parameters:
annotation
- The annotationmember
- The member- Returns:
- THe
OptionalDouble
value
-
doubleValue
@NonNull default @NonNull OptionalDouble doubleValue(@NonNull @NonNull Class<? extends Annotation> annotation) The value as anOptionalDouble
for the given annotation and member.- Parameters:
annotation
- The annotation- Returns:
- THe
OptionalDouble
value
-
getValue
@NonNull default <T> @NonNull Optional<T> getValue(@NonNull @NonNull String annotation, @NonNull @NonNull Class<T> requiredType) Get the value of default "value" the given annotation.- Type Parameters:
T
- The value- Parameters:
annotation
- The annotation classrequiredType
- The required type- Returns:
- An
Optional
of the value
-
getValue
@NonNull default @NonNull Optional<Object> getValue(@NonNull @NonNull String annotation, @NonNull @NonNull String member) Get the value of the given annotation member.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- An
Optional
of the value
-
getValue
@NonNull default @NonNull Optional<Object> getValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) Get the value of the given annotation member.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- An
Optional
of the value
-
isTrue
Returns whether the value of the given member is true.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- True if the value is true
-
isTrue
default boolean isTrue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) Returns whether the value of the given member is true.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- True if the value is true
-
isPresent
Returns whether the value of the given member is present.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- True if the value is true
-
isPresent
default boolean isPresent(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) Returns whether the value of the given member is present.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- True if the value is true
-
isFalse
default boolean isFalse(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull String member) Returns whether the value of the given member is true.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- True if the value is true
-
isFalse
Returns whether the value of the given member is true.- Parameters:
annotation
- The annotation classmember
- The annotation member- Returns:
- True if the value is true
-
getValue
Get the value of default "value" the given annotation.- Parameters:
annotation
- The annotation class- Returns:
- An
Optional
of the value
-
getValue
@NonNull default @NonNull Optional<Object> getValue(@NonNull @NonNull Class<? extends Annotation> annotation) Get the value of default "value" the given annotation.- Parameters:
annotation
- The annotation class- Returns:
- An
Optional
of the value
-
getValue
@NonNull default <T> @NonNull Optional<T> getValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull Class<T> requiredType) Get the value of default "value" the given annotation.- Type Parameters:
T
- Generic type- Parameters:
annotation
- The annotation classrequiredType
- requiredType- Returns:
- An
Optional
of the value
-
getValue
@NonNull default <T> @NonNull Optional<T> getValue(@NonNull @NonNull Class<? extends Annotation> annotation, @NonNull @NonNull Argument<T> requiredType) Get the value of default "value" the given annotation.- Type Parameters:
T
- Generic type- Parameters:
annotation
- The annotation classrequiredType
- requiredType- Returns:
- An
Optional
of the value
-
getValue
@NonNull default <T> @NonNull Optional<T> getValue(@NonNull @NonNull String annotation, @NonNull @NonNull Argument<T> requiredType) Get the value of default "value" the given annotation.- Type Parameters:
T
- Generic type- Parameters:
annotation
- The annotation classrequiredType
- requiredType- Returns:
- An
Optional
of the value
-
hasAnnotation
Checks whether this object has the given annotation on the object itself or inherited from a parent.- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasStereotype
Checks whether this object has the given annotation stereotype on the object itself or inherited from a parent
.An annotation stereotype is a meta annotation potentially applied to another annotation
- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasStereotypeNonRepeating
@Internal default boolean hasStereotypeNonRepeating(@NonNull @NonNull Class<? extends Annotation> annotation) Faster version ofhasStereotype(Class)
that does not support repeatable annotations.- Parameters:
annotation
- The annotation type- Returns:
- Whether this metadata has the given stereotype
-
hasStereotype
Check whether any of the given stereotypes is present.- Parameters:
annotations
- The annotations- Returns:
- True if any of the given stereotypes are present
-
hasStereotype
Check whether any of the given stereotypes is present.- Parameters:
annotations
- The annotations- Returns:
- True if any of the given stereotypes are present
-
hasDeclaredAnnotation
Checks whether this object has the given annotation directly declared on the object.- Parameters:
annotation
- The annotation- Returns:
- True if the annotation is present
-
hasDeclaredStereotype
Checks whether this object has the given stereotype directly declared on the object.- Parameters:
stereotype
- The annotation- Returns:
- True if the annotation is present
-
hasDeclaredStereotype
default boolean hasDeclaredStereotype(@Nullable @Nullable Class<? extends Annotation>... annotations) Checks whether this object has any of the given stereotype directly declared on the object.- Parameters:
annotations
- The annotations- Returns:
- True if any of the given stereotypes are present
-
isRepeatableAnnotation
Is repeatable annotation?- Parameters:
annotation
- The annotation- Returns:
- true if repeatable
- Since:
- 3.1
-
isRepeatableAnnotation
Is repeatable annotation?- Parameters:
annotation
- The annotation- Returns:
- true if repeatable
- Since:
- 3.1
-
findRepeatableAnnotation
default Optional<String> findRepeatableAnnotation(@NonNull @NonNull Class<? extends Annotation> annotation) Find repeatable annotation container.- Parameters:
annotation
- The annotation- Returns:
- optional repeatable annotation container
- Since:
- 3.1
-
findRepeatableAnnotation
Find repeatable annotation container.- Parameters:
annotation
- The annotation- Returns:
- optional repeatable annotation container
- Since:
- 3.1
-
isEmpty
default boolean isEmpty()Is the annotation metadata empty.- Returns:
- True if it is
-
copyAnnotationMetadata
Makes a copy of the annotation or returns this.- Returns:
- the copy
- Since:
- 4.0.0
-
getTargetAnnotationMetadata
Unwraps possible a possible delegate or a provider, returns this otherwise.- Specified by:
getTargetAnnotationMetadata
in interfaceAnnotationSource
- Returns:
- unwrapped
- Since:
- 4.0.0
- See Also:
-