Uses of Interface
net.bytebuddy.asm.MemberSubstitution.Substitution.Chain.Step.Factory
-
Packages that use MemberSubstitution.Substitution.Chain.Step.Factory Package Description net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API. -
-
Uses of MemberSubstitution.Substitution.Chain.Step.Factory in net.bytebuddy.asm
Classes in net.bytebuddy.asm that implement MemberSubstitution.Substitution.Chain.Step.Factory Modifier and Type Class Description static class
MemberSubstitution.Substitution.Chain.Step.Simple
A simple substitution step within a substitution chain.Fields in net.bytebuddy.asm with type parameters of type MemberSubstitution.Substitution.Chain.Step.Factory Modifier and Type Field Description private java.util.List<MemberSubstitution.Substitution.Chain.Step.Factory>
MemberSubstitution.Substitution.Chain.Factory. steps
The substitution steps to apply.Methods in net.bytebuddy.asm with parameters of type MemberSubstitution.Substitution.Chain.Step.Factory Modifier and Type Method Description MemberSubstitution.Substitution.Chain.Factory
MemberSubstitution.Substitution.Chain.Factory. executing(MemberSubstitution.Substitution.Chain.Step.Factory... step)
Appends the supplied steps to the substitution chain.MemberSubstitution
MemberSubstitution.WithoutSpecification. replaceWithChain(MemberSubstitution.Substitution.Chain.Step.Factory... step)
Replaces the matched byte code elements with a chain of substitutions that can operate on the same values as the substituted element.Method parameters in net.bytebuddy.asm with type arguments of type MemberSubstitution.Substitution.Chain.Step.Factory Modifier and Type Method Description MemberSubstitution.Substitution.Chain.Factory
MemberSubstitution.Substitution.Chain.Factory. executing(java.util.List<? extends MemberSubstitution.Substitution.Chain.Step.Factory> steps)
Appends the supplied steps to the substitution chain.MemberSubstitution
MemberSubstitution.WithoutSpecification. replaceWithChain(java.util.List<? extends MemberSubstitution.Substitution.Chain.Step.Factory> steps)
Replaces the matched byte code elements with a chain of substitutions that can operate on the same values as the substituted element.Constructor parameters in net.bytebuddy.asm with type arguments of type MemberSubstitution.Substitution.Chain.Step.Factory Constructor Description Factory(Assigner assigner, Assigner.Typing typing, java.util.List<MemberSubstitution.Substitution.Chain.Step.Factory> steps)
Creates a new factory for a substitution chain.
-