Uses of Interface
jakarta.enterprise.inject.build.compatible.spi.MethodConfig
-
Packages that use MethodConfig Package Description jakarta.enterprise.inject.build.compatible.spi The build compatible extension SPI. -
-
Uses of MethodConfig in jakarta.enterprise.inject.build.compatible.spi
Methods in jakarta.enterprise.inject.build.compatible.spi that return MethodConfig Modifier and Type Method Description MethodConfig
MethodConfig. addAnnotation(AnnotationInfo annotation)
Adds given annotation to this method.MethodConfig
MethodConfig. addAnnotation(java.lang.annotation.Annotation annotation)
Adds given annotation to this method.MethodConfig
MethodConfig. addAnnotation(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
Adds a marker annotation of given type to this method.MethodConfig
MethodConfig. removeAllAnnotations()
Removes all annotations from this method.MethodConfig
MethodConfig. removeAnnotation(java.util.function.Predicate<AnnotationInfo> predicate)
Removes all annotations matching given predicate from this method.Methods in jakarta.enterprise.inject.build.compatible.spi that return types with arguments of type MethodConfig Modifier and Type Method Description java.util.Collection<MethodConfig>
ClassConfig. constructors()
Returns a collection ofMethodConfig
objects for each constructor of this class, as defined byClassInfo.constructors
.java.util.Collection<MethodConfig>
ClassConfig. methods()
Returns a collection ofMethodConfig
objects for each method of this class, as defined byClassInfo.methods
.
-