Module jakarta.cdi
Interface AnnotatedFieldConfigurator<T>
- 
- Type Parameters:
- T- the class declaring the field
 
 public interface AnnotatedFieldConfigurator<T>This interface is part of theAnnotatedTypeConfiguratorSPI and helps defining anAnnotatedFieldCDI Lite implementations are not required to provide support for Portable Extensions. - Since:
- 2.0
- Author:
- Martin Kouba, Antoine Sabot-Durand
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AnnotatedFieldConfigurator<T>add(java.lang.annotation.Annotation annotation)Add an annotation to the field.AnnotatedField<T>getAnnotated()AnnotatedFieldConfigurator<T>remove(java.util.function.Predicate<java.lang.annotation.Annotation> predicate)Remove annotations that match the specified predicate.default AnnotatedFieldConfigurator<T>removeAll()Remove all the annotations.
 
- 
- 
- 
Method Detail- 
getAnnotatedAnnotatedField<T> getAnnotated() - Returns:
- the original AnnotatedField
 
 - 
addAnnotatedFieldConfigurator<T> add(java.lang.annotation.Annotation annotation) Add an annotation to the field.- Parameters:
- annotation- the annotation to add
- Returns:
- self
 
 - 
removeAnnotatedFieldConfigurator<T> remove(java.util.function.Predicate<java.lang.annotation.Annotation> predicate) Remove annotations that match the specified predicate.Example predicates: // To remove all the annotations: (a) -> true // To remove annotations with a concrete annotation type: (a) -> a.annotationType().equals(Foo.class) // To remove annotation equal to a specified object: (a) -> a.equals(fooAnnotation) // To remove annotations that are considered equivalent for the purposes of typesafe resolution: (a) -> beanManager.areQualifiersEquivalent(a, fooQualifier) (a) -> beanManager.areInterceptorBindingsEquivalent(a, fooInterceptorBinding)- Parameters:
- predicate-- Predicateused to filter annotations to remove
- Returns:
- self
 
 - 
removeAlldefault AnnotatedFieldConfigurator<T> removeAll() Remove all the annotations.- Returns:
- self
 
 
- 
 
-