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 classAgentBuilder.LambdaInstrumentationStrategy.AlternativeMetaFactoryRedirectionImplements the alternative lambda meta factory.protected static classAgentBuilder.LambdaInstrumentationStrategy.MetaFactoryRedirectionImplements 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 classAdviceAdvice wrappers copy the code of blueprint methods to be executed before and/or after a matched method.protected static classAsmVisitorWrapper.ForDeclaredMethods.EntryAn entry describing a method visitor wrapper paired with a matcher for fields to be wrapped.static classMemberAttributeExtension.ForMethodA visitor that adds attributes to a method.classMemberSubstitutionSubstitutes 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. methodVisitorWrappersThe 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.ForDeclaredMethodsAsmVisitorWrapper.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.ForDeclaredMethodsAsmVisitorWrapper.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.ForDeclaredMethodsAsmVisitorWrapper.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.ForDeclaredMethodsAsmVisitorWrapper.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.ForDeclaredMethodsAsmVisitorWrapper.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.ForDeclaredMethodsAsmVisitorWrapper.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.
-