Uses of Interface
net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper
-
Packages that use AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper Package Description net.bytebuddy.agent.builder An agent builder is used to easily implement load-time class-transformations using a Java agent.net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API. -
-
Uses of AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper Modifier and Type Class Description protected static class
AgentBuilder.LambdaInstrumentationStrategy.AlternativeMetaFactoryRedirection
Implements the alternative lambda meta factory.protected static class
AgentBuilder.LambdaInstrumentationStrategy.MetaFactoryRedirection
Implements the regular lambda meta factory. -
Uses of AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper in net.bytebuddy.asm
Classes in net.bytebuddy.asm that implement AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper Modifier and Type Class Description class
Advice
Advice wrappers copy the code of blueprint methods to be executed before and/or after a matched method.protected static class
AsmVisitorWrapper.ForDeclaredMethods.Entry
An entry describing a method visitor wrapper paired with a matcher for fields to be wrapped.static class
MemberAttributeExtension.ForMethod
A visitor that adds attributes to a method.class
MemberSubstitution
Substitutes field access or method invocations within a method's body.Fields in net.bytebuddy.asm with type parameters of type AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper Modifier and Type Field Description private java.util.List<? extends AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper>
AsmVisitorWrapper.ForDeclaredMethods.Entry. methodVisitorWrappers
The method visitor wrapper to be applied if the given matcher is matched.Methods in net.bytebuddy.asm with parameters of type AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper Modifier and Type Method Description AsmVisitorWrapper.ForDeclaredMethods
AsmVisitorWrapper.ForDeclaredMethods. constructor(ElementMatcher<? super MethodDescription> matcher, AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper... methodVisitorWrapper)
Defines a new method visitor wrapper to be applied on any constructor if the given method matcher is matched.AsmVisitorWrapper.ForDeclaredMethods
AsmVisitorWrapper.ForDeclaredMethods. invokable(ElementMatcher<? super MethodDescription> matcher, AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper... methodVisitorWrapper)
Defines a new method visitor wrapper to be applied on any method or constructor if the given method matcher is matched.AsmVisitorWrapper.ForDeclaredMethods
AsmVisitorWrapper.ForDeclaredMethods. method(ElementMatcher<? super MethodDescription> matcher, AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper... methodVisitorWrapper)
Defines a new method visitor wrapper to be applied on any method if the given method matcher is matched.Method parameters in net.bytebuddy.asm with type arguments of type AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper Modifier and Type Method Description AsmVisitorWrapper.ForDeclaredMethods
AsmVisitorWrapper.ForDeclaredMethods. constructor(ElementMatcher<? super MethodDescription> matcher, java.util.List<? extends AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper> methodVisitorWrappers)
Defines a new method visitor wrapper to be applied on any constructor if the given method matcher is matched.AsmVisitorWrapper.ForDeclaredMethods
AsmVisitorWrapper.ForDeclaredMethods. invokable(ElementMatcher<? super MethodDescription> matcher, java.util.List<? extends AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper> methodVisitorWrappers)
Defines a new method visitor wrapper to be applied on any method or constructor if the given method matcher is matched.AsmVisitorWrapper.ForDeclaredMethods
AsmVisitorWrapper.ForDeclaredMethods. method(ElementMatcher<? super MethodDescription> matcher, java.util.List<? extends AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper> methodVisitorWrappers)
Defines a new method visitor wrapper to be applied on any method if the given method matcher is matched.Constructor parameters in net.bytebuddy.asm with type arguments of type AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper Constructor Description Entry(ElementMatcher<? super MethodDescription> matcher, java.util.List<? extends AsmVisitorWrapper.ForDeclaredMethods.MethodVisitorWrapper> methodVisitorWrappers)
Creates a new entry.
-