Uses of Interface
net.bytebuddy.asm.AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper
-
Packages that use AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper Package Description net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API. -
-
Uses of AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper in net.bytebuddy.asm
Classes in net.bytebuddy.asm that implement AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper Modifier and Type Class Description protected static class
AsmVisitorWrapper.ForDeclaredFields.Entry
An entry describing a field visitor wrapper paired with a matcher for fields to be wrapped.static class
MemberAttributeExtension.ForField
A visitor that adds attributes to a field.Fields in net.bytebuddy.asm with type parameters of type AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper Modifier and Type Field Description private java.util.List<? extends AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper>
AsmVisitorWrapper.ForDeclaredFields.Entry. fieldVisitorWrappers
The field visitor wrapper to be applied if the given matcher is matched.Methods in net.bytebuddy.asm with parameters of type AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper Modifier and Type Method Description AsmVisitorWrapper.ForDeclaredFields
AsmVisitorWrapper.ForDeclaredFields. field(ElementMatcher<? super FieldDescription.InDefinedShape> matcher, AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper... fieldVisitorWrapper)
Defines a new field visitor wrapper to be applied if the given field matcher is matched.Method parameters in net.bytebuddy.asm with type arguments of type AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper Modifier and Type Method Description AsmVisitorWrapper.ForDeclaredFields
AsmVisitorWrapper.ForDeclaredFields. field(ElementMatcher<? super FieldDescription.InDefinedShape> matcher, java.util.List<? extends AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper> fieldVisitorWrappers)
Defines a new field visitor wrapper to be applied if the given field matcher is matched.Constructor parameters in net.bytebuddy.asm with type arguments of type AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper Constructor Description Entry(ElementMatcher<? super FieldDescription.InDefinedShape> matcher, java.util.List<? extends AsmVisitorWrapper.ForDeclaredFields.FieldVisitorWrapper> fieldVisitorWrappers)
Creates a new entry.
-