Uses of Class
net.bytebuddy.pool.TypePool.Default.ReaderMode
-
Packages that use TypePool.Default.ReaderMode 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.net.bytebuddy.pool Classes of this package allow for the creatingTypeDescription
s without loading any classes. -
-
Uses of TypePool.Default.ReaderMode in net.bytebuddy.agent.builder
Fields in net.bytebuddy.agent.builder declared as TypePool.Default.ReaderMode Modifier and Type Field Description protected TypePool.Default.ReaderMode
AgentBuilder.PoolStrategy.WithTypePoolCache. readerMode
The reader mode to use for parsing a class file.Constructors in net.bytebuddy.agent.builder with parameters of type TypePool.Default.ReaderMode Constructor Description Simple(TypePool.Default.ReaderMode readerMode, ConcurrentMap<? super ClassLoader,TypePool.CacheProvider> cacheProviders)
Creates a new type locator that caches a cache provider per class loader in a concurrent map.WithTypePoolCache(TypePool.Default.ReaderMode readerMode)
Creates a new type locator that createsTypePool
s but provides a customTypePool.CacheProvider
. -
Uses of TypePool.Default.ReaderMode in net.bytebuddy.asm
Constructors in net.bytebuddy.asm with parameters of type TypePool.Default.ReaderMode Constructor Description ForClassFileLocator(ClassFileLocator classFileLocator, TypePool.Default.ReaderMode readerMode)
Creates a new type pool resolver for a class file locator as a supplement of the implicit type pool. -
Uses of TypePool.Default.ReaderMode in net.bytebuddy.pool
Fields in net.bytebuddy.pool declared as TypePool.Default.ReaderMode Modifier and Type Field Description protected TypePool.Default.ReaderMode
TypePool.Default. readerMode
The reader mode to apply by this default type pool.Methods in net.bytebuddy.pool that return TypePool.Default.ReaderMode Modifier and Type Method Description static TypePool.Default.ReaderMode
TypePool.Default.ReaderMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static TypePool.Default.ReaderMode[]
TypePool.Default.ReaderMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in net.bytebuddy.pool with parameters of type TypePool.Default.ReaderMode Constructor Description Default(TypePool.CacheProvider cacheProvider, ClassFileLocator classFileLocator, TypePool.Default.ReaderMode readerMode)
Creates a new default type pool without a parent pool.Default(TypePool.CacheProvider cacheProvider, ClassFileLocator classFileLocator, TypePool.Default.ReaderMode readerMode, TypePool parentPool)
Creates a new default type pool.WithLazyResolution(TypePool.CacheProvider cacheProvider, ClassFileLocator classFileLocator, TypePool.Default.ReaderMode readerMode)
Creates a new default type pool with lazy resolution and without a parent pool.WithLazyResolution(TypePool.CacheProvider cacheProvider, ClassFileLocator classFileLocator, TypePool.Default.ReaderMode readerMode, TypePool parentPool)
Creates a new default type pool with lazy resolution.
-