Module jakarta.cdi
Interface AnnotationBuilderFactory
- 
public interface AnnotationBuilderFactorySupports instantiatingAnnotationBuilder. Should not be called directly by users; the static methods onAnnotationBuilderare preferred.- Since:
 - 4.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnnotationBuildercreate(ClassInfo annotationType)Returns a newAnnotationBuilderfor given annotation type.AnnotationBuildercreate(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)Returns a newAnnotationBuilderfor given annotation type. 
 - 
 
- 
- 
Method Detail
- 
create
AnnotationBuilder create(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
Returns a newAnnotationBuilderfor given annotation type.- Parameters:
 annotationType- the annotation type- Returns:
 - a new 
AnnotationBuilder 
 
- 
create
AnnotationBuilder create(ClassInfo annotationType)
Returns a newAnnotationBuilderfor given annotation type.- Parameters:
 annotationType- the annotation type- Returns:
 - a new 
AnnotationBuilder 
 
 - 
 
 -