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. -
-
Uses of TypeResolutionStrategy in net.bytebuddy.dynamic
Classes in net.bytebuddy.dynamic that implement TypeResolutionStrategy Modifier and Type Class Description static classTypeResolutionStrategy.ActiveA type resolution strategy that applies allLoadedTypeInitializeras a part of class loading using reflection.static classTypeResolutionStrategy.DisabledA 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 classTypeResolutionStrategy.LazyA type resolution strategy that does not apply anyLoadedTypeInitializers but only loads all types.static classTypeResolutionStrategy.PassiveA type resolution strategy that applies allLoadedTypeInitializerafter 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<U>DynamicType.Builder.AbstractBase.UsingTypeWriter. make(TypeResolutionStrategy typeResolutionStrategy)Creates the dynamic type this builder represents.DynamicType.Unloaded<U>DynamicType.Builder.AbstractBase.UsingTypeWriter. 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.
-