Uses of Interface
net.bytebuddy.asm.Advice.AssignReturned.Handler.Factory
-
Packages that use Advice.AssignReturned.Handler.Factory Package Description net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API. -
-
Uses of Advice.AssignReturned.Handler.Factory in net.bytebuddy.asm
Classes in net.bytebuddy.asm that implement Advice.AssignReturned.Handler.Factory Modifier and Type Class Description static class
Advice.AssignReturned.Handler.Factory.Simple<S extends java.lang.annotation.Annotation>
A simple implementation of aAdvice.AssignReturned.Handler.Factory
that resolves a given list ofAdvice.AssignReturned.Handler
s.static class
Advice.AssignReturned.ToAllArguments.Handler.Factory
A factory to create a handler for aAdvice.AssignReturned.ToAllArguments
annotation.static class
Advice.AssignReturned.ToArguments.Handler.Factory
A factory to create a handler for aAdvice.AssignReturned.ToArguments
annotation.static class
Advice.AssignReturned.ToFields.Handler.Factory
A factory to create a handler for aAdvice.AssignReturned.ToFields
annotation.static class
Advice.AssignReturned.ToReturned.Handler.Factory
A factory to create a handler for aAdvice.AssignReturned.ToReturned
annotation.static class
Advice.AssignReturned.ToThis.Handler.Factory
A handler factory for theAdvice.AssignReturned.ToThis
annotation which assigns an advice method's return value to the this reference of a non-static method.static class
Advice.AssignReturned.ToThrown.Handler.Factory
A factory to create a handler for aAdvice.AssignReturned.ToThrown
annotation.Fields in net.bytebuddy.asm with type parameters of type Advice.AssignReturned.Handler.Factory Modifier and Type Field Description private java.util.List<? extends Advice.AssignReturned.Handler.Factory<?>>
Advice.AssignReturned.Factory. factories
The handler factories to apply.Methods in net.bytebuddy.asm with parameters of type Advice.AssignReturned.Handler.Factory Modifier and Type Method Description Advice.AssignReturned.Factory
Advice.AssignReturned.Factory. with(Advice.AssignReturned.Handler.Factory<?> factory)
Includes the provided handler factory.Constructor parameters in net.bytebuddy.asm with type arguments of type Advice.AssignReturned.Handler.Factory Constructor Description Factory(java.util.List<? extends Advice.AssignReturned.Handler.Factory<?>> factories, Advice.AssignReturned.ExceptionHandler.Factory exceptionHandlerFactory)
Creates a new factory.
-