Uses of Class
net.bytebuddy.asm.MemberRemoval
-
Packages that use MemberRemoval Package Description net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API. -
-
Uses of MemberRemoval in net.bytebuddy.asm
Methods in net.bytebuddy.asm that return MemberRemoval Modifier and Type Method Description MemberRemoval
MemberRemoval. stripConstructors(ElementMatcher<? super MethodDescription> matcher)
Specifies that any constructor that matches the specified matcher should be removed.MemberRemoval
MemberRemoval. stripFields(ElementMatcher<? super FieldDescription.InDefinedShape> matcher)
Specifies that any field that matches the specified matcher should be removed.MemberRemoval
MemberRemoval. stripInvokables(ElementMatcher<? super MethodDescription> matcher)
Specifies that any method or constructor that matches the specified matcher should be removed.MemberRemoval
MemberRemoval. stripMethods(ElementMatcher<? super MethodDescription> matcher)
Specifies that any method that matches the specified matcher should be removed.
-