Uses of Interface
net.bytebuddy.dynamic.TypeResolutionStrategy
-
Packages that use TypeResolutionStrategy 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.net.bytebuddy.dynamic.scaffold.inline All classes and types in this package are related to creating aDynamicType
by enhancing a given type.net.bytebuddy.dynamic.scaffold.subclass All classes and types in this package are related to creating aDynamicType
by creating a subclass of a given type. -
-
Uses of TypeResolutionStrategy in net.bytebuddy.dynamic
Classes in net.bytebuddy.dynamic that implement TypeResolutionStrategy Modifier and Type Class Description static class
TypeResolutionStrategy.Active
A type resolution strategy that applies allLoadedTypeInitializer
as a part of class loading using reflection.static class
TypeResolutionStrategy.Disabled
A type resolution strategy that does not allow for explicit loading of a class and that does not inject any code into the type initializer.static class
TypeResolutionStrategy.Lazy
A type resolution strategy that does not apply anyLoadedTypeInitializer
s but only loads all types.static class
TypeResolutionStrategy.Passive
A type resolution strategy that applies allLoadedTypeInitializer
after class loading using reflection.Methods in net.bytebuddy.dynamic with parameters of type TypeResolutionStrategy Modifier and Type Method Description DynamicType.Unloaded<U>
DynamicType.Builder.AbstractBase.Delegator. make(TypeResolutionStrategy typeResolutionStrategy)
Creates the dynamic type this builder represents.DynamicType.Unloaded<U>
DynamicType.Builder.AbstractBase.Delegator. make(TypeResolutionStrategy typeResolutionStrategy, TypePool typePool)
Creates the dynamic type this builder represents.DynamicType.Unloaded<T>
DynamicType.Builder. make(TypeResolutionStrategy typeResolutionStrategy)
Creates the dynamic type this builder represents.DynamicType.Unloaded<T>
DynamicType.Builder. make(TypeResolutionStrategy typeResolutionStrategy, TypePool typePool)
Creates the dynamic type this builder represents. -
Uses of TypeResolutionStrategy in net.bytebuddy.dynamic.scaffold.inline
Methods in net.bytebuddy.dynamic.scaffold.inline with parameters of type TypeResolutionStrategy Modifier and Type Method Description DynamicType.Unloaded<T>
AbstractInliningDynamicTypeBuilder. make(TypeResolutionStrategy typeResolutionStrategy)
Creates the dynamic type this builder represents.DynamicType.Unloaded<T>
DecoratingDynamicTypeBuilder. make(TypeResolutionStrategy typeResolutionStrategy)
Creates the dynamic type this builder represents.DynamicType.Unloaded<T>
DecoratingDynamicTypeBuilder. make(TypeResolutionStrategy typeResolutionStrategy, TypePool typePool)
Creates the dynamic type this builder represents.DynamicType.Unloaded<T>
RebaseDynamicTypeBuilder. make(TypeResolutionStrategy typeResolutionStrategy, TypePool typePool)
Creates the dynamic type this builder represents.DynamicType.Unloaded<T>
RedefinitionDynamicTypeBuilder. make(TypeResolutionStrategy typeResolutionStrategy, TypePool typePool)
Creates the dynamic type this builder represents. -
Uses of TypeResolutionStrategy in net.bytebuddy.dynamic.scaffold.subclass
Methods in net.bytebuddy.dynamic.scaffold.subclass with parameters of type TypeResolutionStrategy Modifier and Type Method Description DynamicType.Unloaded<T>
SubclassDynamicTypeBuilder. make(TypeResolutionStrategy typeResolutionStrategy)
Creates the dynamic type this builder represents.DynamicType.Unloaded<T>
SubclassDynamicTypeBuilder. make(TypeResolutionStrategy typeResolutionStrategy, TypePool typePool)
Creates the dynamic type this builder represents.
-