Uses of Interface
net.bytebuddy.dynamic.ClassFileLocator.ForInstrumentation.ClassLoadingDelegate
-
Packages that use ClassFileLocator.ForInstrumentation.ClassLoadingDelegate Package Description net.bytebuddy.dynamic This package contains classes and interfaces that are connected to writing the byte stream that represents a Java type that is dynamically created and for loading this type into a running JVM process. -
-
Uses of ClassFileLocator.ForInstrumentation.ClassLoadingDelegate in net.bytebuddy.dynamic
Classes in net.bytebuddy.dynamic that implement ClassFileLocator.ForInstrumentation.ClassLoadingDelegate Modifier and Type Class Description static class
ClassFileLocator.ForInstrumentation.ClassLoadingDelegate.Default
A default implementation of a class loading delegate.static class
ClassFileLocator.ForInstrumentation.ClassLoadingDelegate.Explicit
A class loading delegate that allows the location of explicitly registered classes that cannot be located by a class loader directly.static class
ClassFileLocator.ForInstrumentation.ClassLoadingDelegate.ForDelegatingClassLoader
A class loading delegate that accounts for asun.reflect.DelegatingClassLoader
which cannot load its own classes by name.Fields in net.bytebuddy.dynamic declared as ClassFileLocator.ForInstrumentation.ClassLoadingDelegate Modifier and Type Field Description private ClassFileLocator.ForInstrumentation.ClassLoadingDelegate
ClassFileLocator.ForInstrumentation. classLoadingDelegate
The delegate to load a class by its name.private ClassFileLocator.ForInstrumentation.ClassLoadingDelegate
ClassFileLocator.ForInstrumentation.ClassLoadingDelegate.Explicit. fallbackDelegate
A class loading delegate that is queried for classes that are not registered explicitly.Methods in net.bytebuddy.dynamic that return ClassFileLocator.ForInstrumentation.ClassLoadingDelegate Modifier and Type Method Description static ClassFileLocator.ForInstrumentation.ClassLoadingDelegate
ClassFileLocator.ForInstrumentation.ClassLoadingDelegate.Default. of(java.lang.ClassLoader classLoader)
Creates a class loading delegate for the given class loader.static ClassFileLocator.ForInstrumentation.ClassLoadingDelegate
ClassFileLocator.ForInstrumentation.ClassLoadingDelegate.Explicit. of(java.lang.Class<?> type)
Creates an explicit class loading delegate for the given type.Constructors in net.bytebuddy.dynamic with parameters of type ClassFileLocator.ForInstrumentation.ClassLoadingDelegate Constructor Description Explicit(ClassFileLocator.ForInstrumentation.ClassLoadingDelegate fallbackDelegate, java.util.Collection<? extends java.lang.Class<?>> types)
Creates a new class loading delegate with a possibility of looking up explicitly registered classes.ForInstrumentation(java.lang.instrument.Instrumentation instrumentation, ClassFileLocator.ForInstrumentation.ClassLoadingDelegate classLoadingDelegate)
Creates an agent-based class file locator.
-