Uses of Interface
net.bytebuddy.dynamic.scaffold.FieldLocator
-
Packages that use FieldLocator Package Description net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API.net.bytebuddy.dynamic.scaffold This package contains helper types and implementations that are responsible for the actual writing of a byte array representing a Java class.net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of FieldLocator in net.bytebuddy.asm
Methods in net.bytebuddy.asm that return FieldLocator Modifier and Type Method Description protected abstract FieldLocator
Advice.OffsetMapping.ForField.Unresolved. fieldLocator(TypeDescription instrumentedType)
Returns a field locator for this instance.protected FieldLocator
Advice.OffsetMapping.ForField.Unresolved.WithExplicitType. fieldLocator(TypeDescription instrumentedType)
protected FieldLocator
Advice.OffsetMapping.ForField.Unresolved.WithImplicitType. fieldLocator(TypeDescription instrumentedType)
-
Uses of FieldLocator in net.bytebuddy.dynamic.scaffold
Classes in net.bytebuddy.dynamic.scaffold that implement FieldLocator Modifier and Type Class Description static class
FieldLocator.AbstractBase
An abstract base implementation of a field locator.static class
FieldLocator.ForClassHierarchy
A field locator that looks up fields that are declared within a class's class hierarchy.static class
FieldLocator.ForExactType
A field locator that only looks up fields that are declared by a specific type.static class
FieldLocator.ForTopLevelType
A field locator that only locates fields in the top-level type.static class
FieldLocator.NoOp
A field locator that never discovers a field.Methods in net.bytebuddy.dynamic.scaffold that return FieldLocator Modifier and Type Method Description FieldLocator
FieldLocator.Factory. make(TypeDescription typeDescription)
Creates a field locator for a given type.FieldLocator
FieldLocator.ForClassHierarchy.Factory. make(TypeDescription typeDescription)
FieldLocator
FieldLocator.ForExactType.Factory. make(TypeDescription typeDescription)
FieldLocator
FieldLocator.ForTopLevelType.Factory. make(TypeDescription typeDescription)
FieldLocator
FieldLocator.NoOp. make(TypeDescription typeDescription)
-
Uses of FieldLocator in net.bytebuddy.implementation
Constructors in net.bytebuddy.implementation with parameters of type FieldLocator Constructor Description Prepared(FieldAccessor.FieldNameExtractor fieldNameExtractor, FieldLocator fieldLocator)
Creates a new relative field location.
-