Uses of Class
net.bytebuddy.asm.MemberRemoval
Packages that use MemberRemoval
Package
Description
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 MemberRemovalModifier and TypeMethodDescriptionMemberRemoval.stripConstructors
(ElementMatcher<? super MethodDescription> matcher) Specifies that any constructor that matches the specified matcher should be removed.MemberRemoval.stripFields
(ElementMatcher<? super FieldDescription.InDefinedShape> matcher) Specifies that any field that matches the specified matcher should be removed.MemberRemoval.stripInvokables
(ElementMatcher<? super MethodDescription> matcher) Specifies that any method or constructor that matches the specified matcher should be removed.MemberRemoval.stripMethods
(ElementMatcher<? super MethodDescription> matcher) Specifies that any method that matches the specified matcher should be removed.