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
TypeDescriptions 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.ReaderModeAgentBuilder.PoolStrategy.ClassLoading.readerModeThe reader mode to apply by this type locator.private final TypePool.Default.ReaderModeAgentBuilder.PoolStrategy.Default.readerModeThe reader mode to apply by this type locator.private final TypePool.Default.ReaderModeAgentBuilder.PoolStrategy.Eager.readerModeThe reader mode to apply by this type locator.protected final TypePool.Default.ReaderModeAgentBuilder.PoolStrategy.WithTypePoolCache.readerModeThe reader mode to use for parsing a class file.Constructors in net.bytebuddy.agent.builder with parameters of type TypePool.Default.ReaderModeModifierConstructorDescriptionprivateClassLoading(TypePool.Default.ReaderMode readerMode) Creates a new type locator.privateDefault(TypePool.Default.ReaderMode readerMode) Creates a new type locator.privateEager(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.protectedWithTypePoolCache(TypePool.Default.ReaderMode readerMode) Creates a new type locator that createsTypePools 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.ReaderModeMemberSubstitution.TypePoolResolver.ForClassFileLocator.readerModeThe 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.ReaderModePlugin.Engine.PoolStrategy.Default.readerModeThis strategy's reader mode.private final TypePool.Default.ReaderModePlugin.Engine.PoolStrategy.Eager.readerModeThis strategy's reader mode.Constructors in net.bytebuddy.build with parameters of type TypePool.Default.ReaderModeModifierConstructorDescriptionprivateDefault(TypePool.Default.ReaderMode readerMode) Creates a default pool strategy.privateEager(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.ReaderModeTypePool.Default.readerModeThe reader mode to apply by this default type pool.Methods in net.bytebuddy.pool that return TypePool.Default.ReaderModeModifier and TypeMethodDescriptionstatic TypePool.Default.ReaderModeReturns 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.