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