Uses of Interface
net.bytebuddy.utility.dispatcher.JavaDispatcher.Dispatcher
-
Packages that use JavaDispatcher.Dispatcher Package Description net.bytebuddy.utility.dispatcher A package to handle dispatching of classes. -
-
Uses of JavaDispatcher.Dispatcher in net.bytebuddy.utility.dispatcher
Classes in net.bytebuddy.utility.dispatcher that implement JavaDispatcher.Dispatcher Modifier and Type Class Description static class
JavaDispatcher.Dispatcher.ForConstructor
A dispatcher for invoking a constructor.static class
JavaDispatcher.Dispatcher.ForContainerCreation
A dispatcher that creates an array.static class
JavaDispatcher.Dispatcher.ForDefaultValue
A dispatcher that returns a fixed value.protected static class
JavaDispatcher.Dispatcher.ForDefaultValue.OfNonPrimitiveArray
A dispatcher for a non-primitive array type.protected static class
JavaDispatcher.Dispatcher.ForDefaultValue.OfPrimitiveArray
A dispatcher for returning a default value for a primitive array.static class
JavaDispatcher.Dispatcher.ForInstanceCheck
A dispatcher that performs an instance check.static class
JavaDispatcher.Dispatcher.ForNonStaticMethod
A dispatcher for invoking a non-static proxied method.static class
JavaDispatcher.Dispatcher.ForStaticMethod
A dispatcher for invoking a static proxied method.static class
JavaDispatcher.Dispatcher.ForUnresolvedMethod
A dispatcher for an unresolved method.Fields in net.bytebuddy.utility.dispatcher with type parameters of type JavaDispatcher.Dispatcher Modifier and Type Field Description private java.util.Map<java.lang.reflect.Method,JavaDispatcher.Dispatcher>
JavaDispatcher.ProxiedInvocationHandler. targets
A mapping of proxy type methods to their proxied dispatchers.Methods in net.bytebuddy.utility.dispatcher that return JavaDispatcher.Dispatcher Modifier and Type Method Description protected static JavaDispatcher.Dispatcher
JavaDispatcher.Dispatcher.ForDefaultValue. of(java.lang.Class<?> type)
Resolves a fixed value for a given type.protected static JavaDispatcher.Dispatcher
JavaDispatcher.Dispatcher.ForDefaultValue.OfNonPrimitiveArray. of(java.lang.Class<?> componentType)
Creates a new dispatcher.Method parameters in net.bytebuddy.utility.dispatcher with type arguments of type JavaDispatcher.Dispatcher Modifier and Type Method Description protected static java.lang.Object
JavaDispatcher.DynamicClassLoader. proxy(java.lang.Class<?> proxy, java.util.Map<java.lang.reflect.Method,JavaDispatcher.Dispatcher> dispatchers)
Creates a new proxied type.Constructor parameters in net.bytebuddy.utility.dispatcher with type arguments of type JavaDispatcher.Dispatcher Constructor Description ProxiedInvocationHandler(java.lang.String name, java.util.Map<java.lang.reflect.Method,JavaDispatcher.Dispatcher> targets)
Creates a new invocation handler for proxying a type.
-