Uses of Interface
net.bytebuddy.asm.MemberSubstitution.Substitution
-
Packages that use MemberSubstitution.Substitution Package Description net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API. -
-
Uses of MemberSubstitution.Substitution in net.bytebuddy.asm
Classes in net.bytebuddy.asm that implement MemberSubstitution.Substitution Modifier and Type Class Description static classMemberSubstitution.Substitution.ChainA substitution chain allows for chaining multiple substitution steps for a byte code element being replaced.static classMemberSubstitution.Substitution.ForFieldAccessA substitution with a field access.static classMemberSubstitution.Substitution.ForMethodInvocationA substitution with a method invocation.static classMemberSubstitution.Substitution.StubbingA substitution that drops any field or method access and returns the expected return type's default value, i.enullor zero for primitive types.Fields in net.bytebuddy.asm declared as MemberSubstitution.Substitution Modifier and Type Field Description private MemberSubstitution.SubstitutionMemberSubstitution.Replacement.Binding.Resolved. substitutionThe substitution to apply.private MemberSubstitution.SubstitutionMemberSubstitution.Replacement.ForElementMatchers. substitutionThe substitution to trigger if a member is matched.Methods in net.bytebuddy.asm that return MemberSubstitution.Substitution Modifier and Type Method Description MemberSubstitution.SubstitutionMemberSubstitution.Substitution.Chain.Factory. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.MemberSubstitution.SubstitutionMemberSubstitution.Substitution.Factory. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.MemberSubstitution.SubstitutionMemberSubstitution.Substitution.ForFieldAccess.OfGivenField. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.MemberSubstitution.SubstitutionMemberSubstitution.Substitution.ForFieldAccess.OfMatchedField. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.MemberSubstitution.SubstitutionMemberSubstitution.Substitution.ForMethodInvocation.OfGivenMethod. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.MemberSubstitution.SubstitutionMemberSubstitution.Substitution.ForMethodInvocation.OfInstrumentedMethod. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.MemberSubstitution.SubstitutionMemberSubstitution.Substitution.ForMethodInvocation.OfMatchedMethod. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.MemberSubstitution.SubstitutionMemberSubstitution.Substitution.Stubbing. make(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypePool typePool)Creates a substitution for an instrumented method.Constructors in net.bytebuddy.asm with parameters of type MemberSubstitution.Substitution Constructor Description ForElementMatchers(ElementMatcher<? super FieldDescription.InDefinedShape> fieldMatcher, ElementMatcher<? super MethodDescription> methodMatcher, boolean matchFieldRead, boolean matchFieldWrite, boolean includeVirtualCalls, boolean includeSuperCalls, MemberSubstitution.Substitution substitution)Creates a new replacement that triggers a substitution based on a row of matchers.Resolved(TypeDescription instrumentedType, MethodDescription instrumentedMethod, TypeDescription targetType, ByteCodeElement target, MemberSubstitution.Substitution substitution)Creates a new resolved binding.
-