Package net.bytebuddy.asm
Interface MemberSubstitution.TypePoolResolver
-
- All Known Implementing Classes:
MemberSubstitution.TypePoolResolver.ForClassFileLocator,MemberSubstitution.TypePoolResolver.ForExplicitPool,MemberSubstitution.TypePoolResolver.OfImplicitPool
- Enclosing class:
- MemberSubstitution
public static interface MemberSubstitution.TypePoolResolverA type pool resolver is responsible for resolving aTypePoolfor locating substituted members.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMemberSubstitution.TypePoolResolver.ForClassFileLocatorA type pool resolver that resolves the implicit pool but additionally checks another class file locator.static classMemberSubstitution.TypePoolResolver.ForExplicitPoolA type pool resolver that returns a specific type pool.static classMemberSubstitution.TypePoolResolver.OfImplicitPoolReturns the implicit type pool.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypePoolresolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Resolves a type pool to use for locating substituted members.
-
-
-
Method Detail
-
resolve
TypePool resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)
Resolves a type pool to use for locating substituted members.- Parameters:
instrumentedType- The instrumented type.instrumentedMethod- The instrumented method.typePool- The type pool implicit to the instrumentation.- Returns:
- The type pool to use.
-
-