Uses of Interface
org.jboss.jandex.AnnotationTransformation
-
Packages that use AnnotationTransformation Package Description org.jboss.jandex Jandex is a space efficient Java class file indexer and offline reflection library. -
-
Uses of AnnotationTransformation in org.jboss.jandex
Fields in org.jboss.jandex with type parameters of type AnnotationTransformation Modifier and Type Field Description private java.util.Collection<AnnotationTransformation>
AnnotationOverlay.Builder. annotationTransformations
(package private) java.util.List<AnnotationTransformation>
AnnotationOverlayImpl. transformations
Methods in org.jboss.jandex that return AnnotationTransformation Modifier and Type Method Description private AnnotationTransformation
MutableAnnotationOverlayImpl. addTransformation(Declaration declaration, AnnotationInstance annotation)
private AnnotationTransformation
MutableAnnotationOverlayImpl. removeTransformation(Declaration declaration, java.util.function.Predicate<AnnotationInstance> predicate)
AnnotationTransformation
AnnotationTransformation.Builder. transform(java.util.function.Consumer<AnnotationTransformation.TransformationContext> transformation)
Builds an annotation transformation based on the giventransformation
function.Methods in org.jboss.jandex that return types with arguments of type AnnotationTransformation Modifier and Type Method Description java.util.List<AnnotationTransformation>
MutableAnnotationOverlay. freeze()
Freezes this mutable annotation overlay and returns the annotation transformations to create an equivalent immutable annotation overlay.java.util.List<AnnotationTransformation>
MutableAnnotationOverlayImpl. freeze()
Method parameters in org.jboss.jandex with type arguments of type AnnotationTransformation Modifier and Type Method Description static AnnotationOverlay.Builder
AnnotationOverlay. builder(IndexView index, java.util.Collection<AnnotationTransformation> annotationTransformations)
Returns a new builder for an annotation overlay for givenindex
and a given collection oftransformations
.Constructor parameters in org.jboss.jandex with type arguments of type AnnotationTransformation Constructor Description AnnotationOverlayImpl(IndexView index, boolean compatibleMode, boolean runtimeAnnotationsOnly, boolean inheritedAnnotations, java.util.Collection<AnnotationTransformation> annotationTransformations)
Builder(IndexView index, java.util.Collection<AnnotationTransformation> annotationTransformations)
-