Uses of Enum Class
net.bytebuddy.pool.TypePool.Default.ReaderMode
Packages that use TypePool.Default.ReaderMode
Package
Description
An agent builder is used to easily implement load-time class-transformations using a Java agent.
The ASM package contains classes that are meant for direct interaction with the ASM API.
A package for types that allow for applying Byte Buddy transformation during a build process.
Classes of this package allow for the creating
TypeDescription
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.ReaderModeModifier and TypeFieldDescriptionprivate final TypePool.Default.ReaderMode
AgentBuilder.PoolStrategy.ClassLoading.readerMode
The reader mode to apply by this type locator.private final TypePool.Default.ReaderMode
AgentBuilder.PoolStrategy.Default.readerMode
The reader mode to apply by this type locator.private final TypePool.Default.ReaderMode
AgentBuilder.PoolStrategy.Eager.readerMode
The reader mode to apply by this type locator.protected final 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.ReaderModeModifierConstructorDescriptionprivate
ClassLoading
(TypePool.Default.ReaderMode readerMode) Creates a new type locator.private
Default
(TypePool.Default.ReaderMode readerMode) Creates a new type locator.private
Eager
(TypePool.Default.ReaderMode readerMode) Creates a new type locator.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.protected
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
Fields in net.bytebuddy.asm declared as TypePool.Default.ReaderModeModifier and TypeFieldDescriptionprivate final TypePool.Default.ReaderMode
MemberSubstitution.TypePoolResolver.ForClassFileLocator.readerMode
The reader mode to apply.Constructors in net.bytebuddy.asm with parameters of type TypePool.Default.ReaderModeModifierConstructorDescriptionForClassFileLocator
(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.build
Fields in net.bytebuddy.build declared as TypePool.Default.ReaderModeModifier and TypeFieldDescriptionprivate final TypePool.Default.ReaderMode
Plugin.Engine.PoolStrategy.Default.readerMode
This strategy's reader mode.private final TypePool.Default.ReaderMode
Plugin.Engine.PoolStrategy.Eager.readerMode
This strategy's reader mode.Constructors in net.bytebuddy.build with parameters of type TypePool.Default.ReaderModeModifierConstructorDescriptionprivate
Default
(TypePool.Default.ReaderMode readerMode) Creates a default pool strategy.private
Eager
(TypePool.Default.ReaderMode readerMode) Creates an eager pool strategy. -
Uses of TypePool.Default.ReaderMode in net.bytebuddy.pool
Fields in net.bytebuddy.pool declared as TypePool.Default.ReaderModeModifier and TypeFieldDescriptionprotected final 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.ReaderModeModifier and TypeMethodDescriptionstatic TypePool.Default.ReaderMode
Returns the enum constant of this class with the specified name.static TypePool.Default.ReaderMode[]
TypePool.Default.ReaderMode.values()
Returns an array containing the constants of this enum class, in the order they are declared.Constructors in net.bytebuddy.pool with parameters of type TypePool.Default.ReaderModeModifierConstructorDescriptionDefault
(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.