Uses of Interface
net.bytebuddy.implementation.FieldAccessor.OwnerTypeLocatable
-
Packages that use FieldAccessor.OwnerTypeLocatable Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of FieldAccessor.OwnerTypeLocatable in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement FieldAccessor.OwnerTypeLocatable Modifier and Type Class Description protected static class
FieldAccessor.ForImplicitProperty
A field accessor for an implicit property where a getter or setter property is inferred from the signature.Methods in net.bytebuddy.implementation that return FieldAccessor.OwnerTypeLocatable Modifier and Type Method Description static FieldAccessor.OwnerTypeLocatable
FieldAccessor. of(FieldAccessor.FieldNameExtractor fieldNameExtractor)
Defines a custom strategy for determining the field that is accessed by this field accessor.static FieldAccessor.OwnerTypeLocatable
FieldAccessor. ofBeanProperty()
Defines a field accessor where any access is targeted to a field that matches the methods name with the Java specification for bean properties, i.e.static FieldAccessor.OwnerTypeLocatable
FieldAccessor. ofField(java.lang.String name)
Defines a field accessor where any access is targeted to a field namedname
.
-