Uses of Interface
net.bytebuddy.description.field.FieldDescription
-
Packages that use FieldDescription Package Description net.bytebuddy.asm The ASM package contains classes that are meant for direct interaction with the ASM API.net.bytebuddy.build A package for types that allow for applying Byte Buddy transformation during a build process.net.bytebuddy.description.field Contains descriptions of Java fields.net.bytebuddy.description.type Contains descriptions of Java types and packages.net.bytebuddy.dynamic This package contains classes and interfaces that are connected to writing the byte stream that represents a Java type that is dynamically created and for loading this type into a running JVM process.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.dynamic.scaffold.inline All classes and types in this package are related to creating aDynamicType
by enhancing a given type.net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls.net.bytebuddy.implementation.attribute All types and classes in this package are responsible for writing attributes for a given Java byte code element, i.e.net.bytebuddy.implementation.bind.annotation This package contains annotations, types and classes that are responsible for binding a method to calling another method by interpreting annotations that indicate how a method should be bound to another method.net.bytebuddy.implementation.bytecode.member StackManipulation
s of this package are responsible for accessing type or method members, i.e.net.bytebuddy.matcher Contains an API for matching Java byte code entities.net.bytebuddy.pool Classes of this package allow for the creatingTypeDescription
s without loading any classes.net.bytebuddy.utility This package contains utility classes for common use within any Byte Buddy logic. -
-
Uses of FieldDescription in net.bytebuddy.asm
Fields in net.bytebuddy.asm declared as FieldDescription Modifier and Type Field Description private FieldDescription
Advice.OffsetMapping.ForField.Resolved.Factory. fieldDescription
The field to be bound.private FieldDescription
Advice.OffsetMapping.ForField.Resolved. fieldDescription
The accessed field.protected FieldDescription
Advice.OffsetMapping.Target.ForField. fieldDescription
The field value to load.private FieldDescription
MemberAttributeExtension.ForField.FieldAttributeVisitor. fieldDescription
The field to add annotations to.private FieldDescription
MemberSubstitution.Substitution.ForFieldAccess.FieldResolver.Simple. fieldDescription
The field to access.private FieldDescription
MemberSubstitution.Substitution.ForFieldAccess.OfGivenField. fieldDescription
The field to substitute with.Fields in net.bytebuddy.asm with type parameters of type FieldDescription Modifier and Type Field Description private ElementMatcher<? super FieldDescription>
MemberSubstitution.Substitution.ForFieldAccess.FieldResolver.ForElementMatcher. matcher
The matcher to use for locating the field to substitute with.private ElementMatcher<? super FieldDescription>
MemberSubstitution.Substitution.ForFieldAccess.OfMatchedField. matcher
The matcher to apply.Methods in net.bytebuddy.asm that return FieldDescription Modifier and Type Method Description protected abstract FieldDescription
Advice.OffsetMapping.ForField. resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Resolves the field being bound.protected FieldDescription
Advice.OffsetMapping.ForField.Resolved. resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod)
protected FieldDescription
Advice.OffsetMapping.ForField.Unresolved. resolve(TypeDescription instrumentedType, MethodDescription instrumentedMethod)
FieldDescription
MemberSubstitution.Substitution.ForFieldAccess.FieldResolver.ForElementMatcher. resolve(TypeDescription targetType, ByteCodeElement target, TypeList.Generic parameters, TypeDescription.Generic result)
Resolves the field to substitute with.FieldDescription
MemberSubstitution.Substitution.ForFieldAccess.FieldResolver. resolve(TypeDescription targetType, ByteCodeElement target, TypeList.Generic parameters, TypeDescription.Generic result)
Resolves the field to substitute with.FieldDescription
MemberSubstitution.Substitution.ForFieldAccess.FieldResolver.Simple. resolve(TypeDescription targetType, ByteCodeElement target, TypeList.Generic parameters, TypeDescription.Generic result)
Resolves the field to substitute with.Methods in net.bytebuddy.asm with parameters of type FieldDescription Modifier and Type Method Description <T extends java.lang.annotation.Annotation>
Advice.WithCustomMappingAdvice.WithCustomMapping. bind(java.lang.Class<T> type, FieldDescription fieldDescription)
Binds the supplied annotation to the value of the supplied field.MemberSubstitution
MemberSubstitution.WithoutSpecification. replaceWith(FieldDescription fieldDescription)
Replaces any interaction with a matched byte code element by an interaction with the specified field.Method parameters in net.bytebuddy.asm with type arguments of type FieldDescription Modifier and Type Method Description MemberSubstitution
MemberSubstitution.WithoutSpecification. replaceWithField(ElementMatcher<? super FieldDescription> matcher)
Replaces any interaction with a matched byte code element with a non-static field access on the first parameter of the matched element.Constructors in net.bytebuddy.asm with parameters of type FieldDescription Constructor Description Factory(java.lang.Class<T> annotationType, FieldDescription fieldDescription)
Creates a new factory for binding a specific field with read-only semantics and static typing.Factory(java.lang.Class<T> annotationType, FieldDescription fieldDescription, boolean readOnly, Assigner.Typing typing)
Creates a new factory for binding a specific field.FieldAttributeVisitor(org.objectweb.asm.FieldVisitor fieldVisitor, FieldDescription fieldDescription, FieldAttributeAppender fieldAttributeAppender, AnnotationValueFilter annotationValueFilter)
Creates a new field attribute visitor.ForField(FieldDescription fieldDescription, StackManipulation readAssignment)
Creates a new target for a field value mapping.OfGivenField(FieldDescription fieldDescription)
Creates a new factory that substitues with a given field.ReadOnly(FieldDescription fieldDescription)
Creates a new read-only mapping for a field.ReadOnly(FieldDescription fieldDescription, StackManipulation readAssignment)
Creates a new read-only mapping for a field.ReadWrite(FieldDescription fieldDescription)
Creates a new target for a writable field.ReadWrite(FieldDescription fieldDescription, StackManipulation readAssignment, StackManipulation writeAssignment)
Creates a new target for a writable field.Resolved(TypeDescription.Generic target, boolean readOnly, Assigner.Typing typing, FieldDescription fieldDescription)
Creates a resolved offset mapping for a field.Simple(FieldDescription fieldDescription)
Creates a simple field resolver.Constructor parameters in net.bytebuddy.asm with type arguments of type FieldDescription Constructor Description ForElementMatcher(TypeDescription instrumentedType, ElementMatcher<? super FieldDescription> matcher)
Creates a new field resolver that locates a field on the receiver type using a matcher.OfMatchedField(ElementMatcher<? super FieldDescription> matcher)
Creates a new substitution factory that locates a field by applying a matcher on the receiver type. -
Uses of FieldDescription in net.bytebuddy.build
Methods in net.bytebuddy.build that return types with arguments of type FieldDescription Modifier and Type Method Description protected ElementMatcher<FieldDescription>
HashCodeAndEqualsPlugin. nonNullable(ElementMatcher<FieldDescription> matcher)
Resolves the matcher to identify non-nullable fields.protected ElementMatcher<FieldDescription>
HashCodeAndEqualsPlugin.WithNonNullableFields. nonNullable(ElementMatcher<FieldDescription> matcher)
Resolves the matcher to identify non-nullable fields.Methods in net.bytebuddy.build with parameters of type FieldDescription Modifier and Type Method Description boolean
HashCodeAndEqualsPlugin.ValueMatcher. matches(FieldDescription target)
Matches a target against this element matcher.Method parameters in net.bytebuddy.build with type arguments of type FieldDescription Modifier and Type Method Description protected ElementMatcher<FieldDescription>
HashCodeAndEqualsPlugin. nonNullable(ElementMatcher<FieldDescription> matcher)
Resolves the matcher to identify non-nullable fields.protected ElementMatcher<FieldDescription>
HashCodeAndEqualsPlugin.WithNonNullableFields. nonNullable(ElementMatcher<FieldDescription> matcher)
Resolves the matcher to identify non-nullable fields. -
Uses of FieldDescription in net.bytebuddy.description.field
Classes in net.bytebuddy.description.field with type parameters of type FieldDescription Modifier and Type Interface Description interface
FieldList<T extends FieldDescription>
Implementations represent a list of field descriptions.static class
FieldList.AbstractBase<S extends FieldDescription>
An abstract base implementation of aFieldList
.static class
FieldList.Empty<S extends FieldDescription>
An implementation of an empty field list.static class
FieldList.Explicit<S extends FieldDescription>
A wrapper implementation of a field list for a given list of field descriptions.Subinterfaces of FieldDescription in net.bytebuddy.description.field Modifier and Type Interface Description static interface
FieldDescription.InDefinedShape
Represents a field in its defined shape, i.e.static interface
FieldDescription.InGenericShape
Represents a field description in its generic shape, i.e.Classes in net.bytebuddy.description.field that implement FieldDescription Modifier and Type Class Description static class
FieldDescription.AbstractBase
An abstract base implementation of a field description.static class
FieldDescription.ForLoadedField
An implementation of a field description for a loaded field.static class
FieldDescription.InDefinedShape.AbstractBase
An abstract base implementation of a field description in its defined shape.static class
FieldDescription.Latent
A latent field description describes a field that is not attached to a declaringTypeDescription
.static class
FieldDescription.TypeSubstituting
A field description that represents a given field but with a substituted field type.Fields in net.bytebuddy.description.field declared as FieldDescription Modifier and Type Field Description private FieldDescription
FieldDescription.TypeSubstituting. fieldDescription
The represented field.Fields in net.bytebuddy.description.field with type parameters of type FieldDescription Modifier and Type Field Description private java.util.List<? extends FieldDescription>
FieldList.TypeSubstituting. fieldDescriptions
The field descriptions to be transformed.Constructors in net.bytebuddy.description.field with parameters of type FieldDescription Constructor Description Explicit(S... fieldDescription)
Creates a new immutable wrapper field list.TypeSubstituting(TypeDescription.Generic declaringType, FieldDescription fieldDescription, TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor)
Creates a field description with a substituted field type.Constructor parameters in net.bytebuddy.description.field with type arguments of type FieldDescription Constructor Description TypeSubstituting(TypeDescription.Generic declaringType, java.util.List<? extends FieldDescription> fieldDescriptions, TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor)
Creates a new type substituting field list. -
Uses of FieldDescription in net.bytebuddy.description.type
Methods in net.bytebuddy.description.type with parameters of type FieldDescription Modifier and Type Method Description static TypeList.Generic
TypeList.Generic.ForDetachedTypes. attach(FieldDescription fieldDescription, java.util.List<? extends TypeDescription.Generic> detachedTypes)
Creates a list of types that are attached to the provided field.static TypeDescription.Generic.Visitor.Substitutor.ForAttachment
TypeDescription.Generic.Visitor.Substitutor.ForAttachment. of(FieldDescription fieldDescription)
Attaches all types to the given field description. -
Uses of FieldDescription in net.bytebuddy.dynamic
Classes in net.bytebuddy.dynamic that implement FieldDescription Modifier and Type Class Description protected static class
Transformer.ForField.TransformedField
An implementation of a transformed field.Fields in net.bytebuddy.dynamic with type parameters of type FieldDescription Modifier and Type Field Description private LatentMatcher<? super FieldDescription>
DynamicType.Builder.AbstractBase.Adapter.FieldMatchAdapter. matcher
The matcher for any fields to apply this matcher to.protected Transformer<FieldDescription>
DynamicType.Builder.FieldDefinition.Optional.Valuable.AbstractBase.Adapter. transformer
The field transformer to apply.Methods in net.bytebuddy.dynamic that return FieldDescription Modifier and Type Method Description FieldDescription
Transformer.ForField. transform(TypeDescription instrumentedType, FieldDescription fieldDescription)
Transforms the supplied target.Methods in net.bytebuddy.dynamic that return types with arguments of type FieldDescription Modifier and Type Method Description static Transformer<FieldDescription>
Transformer.ForField. withModifiers(java.util.List<? extends ModifierContributor.ForField> modifierContributors)
Creates a field transformer that patches the transformed field by the given modifier contributors.static Transformer<FieldDescription>
Transformer.ForField. withModifiers(ModifierContributor.ForField... modifierContributor)
Creates a field transformer that patches the transformed field by the given modifier contributors.Methods in net.bytebuddy.dynamic with parameters of type FieldDescription Modifier and Type Method Description DynamicType.Builder.FieldDefinition.Optional.Valuable<S>
DynamicType.Builder.AbstractBase. define(FieldDescription field)
Defines a field that is similar to the supplied field but without copying any annotations on the field.DynamicType.Builder.FieldDefinition.Optional.Valuable<T>
DynamicType.Builder. define(FieldDescription field)
Defines a field that is similar to the supplied field but without copying any annotations on the field.FieldDescription
Transformer.ForField. transform(TypeDescription instrumentedType, FieldDescription fieldDescription)
Transforms the supplied target.Method parameters in net.bytebuddy.dynamic with type arguments of type FieldDescription Modifier and Type Method Description DynamicType.Builder.FieldDefinition.Valuable<U>
DynamicType.Builder.AbstractBase.Adapter. field(LatentMatcher<? super FieldDescription> matcher)
Matches a field that is already declared by the instrumented type.DynamicType.Builder.FieldDefinition.Valuable<U>
DynamicType.Builder.AbstractBase.Delegator. field(LatentMatcher<? super FieldDescription> matcher)
Matches a field that is already declared by the instrumented type.DynamicType.Builder.FieldDefinition.Valuable<S>
DynamicType.Builder.AbstractBase. field(ElementMatcher<? super FieldDescription> matcher)
Matches a field that is already declared by the instrumented type.DynamicType.Builder.FieldDefinition.Valuable<T>
DynamicType.Builder. field(ElementMatcher<? super FieldDescription> matcher)
Matches a field that is already declared by the instrumented type.DynamicType.Builder.FieldDefinition.Valuable<T>
DynamicType.Builder. field(LatentMatcher<? super FieldDescription> matcher)
Matches a field that is already declared by the instrumented type.protected DynamicType.Builder.FieldDefinition.Optional<U>
DynamicType.Builder.AbstractBase.Adapter.FieldDefinitionAdapter. materialize(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue)
protected DynamicType.Builder.FieldDefinition.Optional<U>
DynamicType.Builder.AbstractBase.Adapter.FieldMatchAdapter. materialize(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue)
protected abstract DynamicType.Builder.FieldDefinition.Optional<V>
DynamicType.Builder.FieldDefinition.Optional.Valuable.AbstractBase.Adapter. materialize(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue)
Creates a new optional field definition for which all of the supplied values are represented.DynamicType.Builder.FieldDefinition.Optional<V>
DynamicType.Builder.FieldDefinition.Optional.Valuable.AbstractBase.Adapter. transform(Transformer<FieldDescription> transformer)
Applies the supplied transformer onto the previously defined or matched field.DynamicType.Builder.FieldDefinition.Optional<S>
DynamicType.Builder.FieldDefinition. transform(Transformer<FieldDescription> transformer)
Applies the supplied transformer onto the previously defined or matched field.Constructor parameters in net.bytebuddy.dynamic with type arguments of type FieldDescription Constructor Description Adapter(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue)
Creates a new field adapter.FieldDefinitionAdapter(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue, FieldDescription.Token token)
Creates a new field definition adapter.FieldMatchAdapter(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue, LatentMatcher<? super FieldDescription> matcher)
Creates a new field match adapter.FieldMatchAdapter(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue, LatentMatcher<? super FieldDescription> matcher)
Creates a new field match adapter.FieldMatchAdapter(LatentMatcher<? super FieldDescription> matcher)
Creates a new field match adapter. -
Uses of FieldDescription in net.bytebuddy.dynamic.scaffold
Fields in net.bytebuddy.dynamic.scaffold declared as FieldDescription Modifier and Type Field Description private FieldDescription
FieldLocator.Resolution.Simple. fieldDescription
A description of the located field.private FieldDescription
TypeWriter.FieldPool.Record.ForExplicitField. fieldDescription
The implemented field.private FieldDescription
TypeWriter.FieldPool.Record.ForImplicitField. fieldDescription
The implemented field.Fields in net.bytebuddy.dynamic.scaffold with type parameters of type FieldDescription Modifier and Type Field Description private java.util.LinkedHashMap<java.lang.String,FieldDescription>
TypeWriter.Default.ForInlining.WithFullProcessing.RedefinitionClassVisitor. declarableFields
A mapping of fields to write by their names.private ElementMatcher<? super FieldDescription>
FieldRegistry.Default.Compiled.Entry. matcher
The matcher to identify any field that this definition concerns.private LatentMatcher<? super FieldDescription>
FieldRegistry.Default.Entry. matcher
The matcher to identify any field that this definition concerns.private Transformer<FieldDescription>
FieldRegistry.Default.Compiled.Entry. transformer
The field transformer to apply to any matched field.private Transformer<FieldDescription>
FieldRegistry.Default.Entry. transformer
The field transformer to apply to any matched field.Methods in net.bytebuddy.dynamic.scaffold that return FieldDescription Modifier and Type Method Description FieldDescription
FieldLocator.Resolution. getField()
Returns the field description if a field was located.FieldDescription
FieldLocator.Resolution.Illegal. getField()
Returns the field description if a field was located.FieldDescription
FieldLocator.Resolution.Simple. getField()
Returns the field description if a field was located.FieldDescription
TypeWriter.FieldPool.Record.ForExplicitField. getField()
Returns the field that this record represents.FieldDescription
TypeWriter.FieldPool.Record.ForImplicitField. getField()
Returns the field that this record represents.FieldDescription
TypeWriter.FieldPool.Record. getField()
Returns the field that this record represents.Methods in net.bytebuddy.dynamic.scaffold that return types with arguments of type FieldDescription Modifier and Type Method Description protected Transformer<FieldDescription>
FieldRegistry.Default.Entry. getTransformer()
Returns the field transformer to apply to any matched field.ElementMatcher<? super FieldDescription>
FieldRegistry.Default.Entry. resolve(TypeDescription typeDescription)
Resolves the element matcher this instance represents for the supplied type description.Methods in net.bytebuddy.dynamic.scaffold with parameters of type FieldDescription Modifier and Type Method Description protected TypeWriter.FieldPool.Record
FieldRegistry.Default.Compiled.Entry. bind(TypeDescription instrumentedType, FieldDescription fieldDescription)
Binds this entry to the provided field description.boolean
FieldRegistry.Default.Compiled.Entry. matches(FieldDescription target)
Matches a target against this element matcher.TypeWriter.FieldPool.Record
FieldRegistry.Compiled.NoOp. target(FieldDescription fieldDescription)
Looks up a handler entry for a given field.TypeWriter.FieldPool.Record
FieldRegistry.Default.Compiled. target(FieldDescription fieldDescription)
Looks up a handler entry for a given field.TypeWriter.FieldPool.Record
TypeWriter.FieldPool.Disabled. target(FieldDescription fieldDescription)
Looks up a handler entry for a given field.TypeWriter.FieldPool.Record
TypeWriter.FieldPool. target(FieldDescription fieldDescription)
Looks up a handler entry for a given field.Method parameters in net.bytebuddy.dynamic.scaffold with type arguments of type FieldDescription Modifier and Type Method Description protected abstract FieldList<?>
FieldLocator.AbstractBase. locate(ElementMatcher<? super FieldDescription> matcher)
Locates fields that match the given matcher.protected FieldList<?>
FieldLocator.ForClassHierarchy. locate(ElementMatcher<? super FieldDescription> matcher)
protected FieldList<?>
FieldLocator.ForExactType. locate(ElementMatcher<? super FieldDescription> matcher)
protected FieldList<?>
FieldLocator.ForTopLevelType. locate(ElementMatcher<? super FieldDescription> matcher)
FieldRegistry
FieldRegistry.Default. prepend(LatentMatcher<? super FieldDescription> matcher, FieldAttributeAppender.Factory fieldAttributeAppenderFactory, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Prepends the given field definition to this field registry, i.e.FieldRegistry
FieldRegistry.Default. prepend(LatentMatcher<? super FieldDescription> matcher, FieldAttributeAppender.Factory fieldAttributeAppenderFactory, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Prepends the given field definition to this field registry, i.e.FieldRegistry
FieldRegistry. prepend(LatentMatcher<? super FieldDescription> matcher, FieldAttributeAppender.Factory fieldAttributeAppenderFactory, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Prepends the given field definition to this field registry, i.e.FieldRegistry
FieldRegistry. prepend(LatentMatcher<? super FieldDescription> matcher, FieldAttributeAppender.Factory fieldAttributeAppenderFactory, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Prepends the given field definition to this field registry, i.e.Constructors in net.bytebuddy.dynamic.scaffold with parameters of type FieldDescription Constructor Description ForExplicitField(FieldAttributeAppender attributeAppender, java.lang.Object defaultValue, FieldDescription fieldDescription)
Creates a record for a rich field.ForImplicitField(FieldDescription fieldDescription)
Creates a new record for a simple field.Simple(FieldDescription fieldDescription)
Creates a new simple resolution for a field.Constructor parameters in net.bytebuddy.dynamic.scaffold with type arguments of type FieldDescription Constructor Description Entry(ElementMatcher<? super FieldDescription> matcher, FieldAttributeAppender fieldAttributeAppender, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Creates a new entry.Entry(ElementMatcher<? super FieldDescription> matcher, FieldAttributeAppender fieldAttributeAppender, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Creates a new entry.Entry(LatentMatcher<? super FieldDescription> matcher, FieldAttributeAppender.Factory fieldAttributeAppenderFactory, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Creates a new entry.Entry(LatentMatcher<? super FieldDescription> matcher, FieldAttributeAppender.Factory fieldAttributeAppenderFactory, java.lang.Object defaultValue, Transformer<FieldDescription> transformer)
Creates a new entry. -
Uses of FieldDescription in net.bytebuddy.dynamic.scaffold.inline
Method parameters in net.bytebuddy.dynamic.scaffold.inline with type arguments of type FieldDescription Modifier and Type Method Description DynamicType.Builder.FieldDefinition.Valuable<T>
DecoratingDynamicTypeBuilder. field(LatentMatcher<? super FieldDescription> matcher)
Matches a field that is already declared by the instrumented type. -
Uses of FieldDescription in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement FieldDescription Modifier and Type Class Description protected static class
Implementation.Context.Default.CacheValueField
A description of a field that stores a cached value.Fields in net.bytebuddy.implementation declared as FieldDescription Modifier and Type Field Description private FieldDescription
FieldAccessor.FieldLocation.Absolute. fieldDescription
The field description.private FieldDescription
Implementation.Context.Default.FieldGetter. fieldDescription
The field for which a getter is described.private FieldDescription
Implementation.Context.Default.FieldGetterDelegation. fieldDescription
The field to read from.private FieldDescription
Implementation.Context.Default.FieldSetter. fieldDescription
The field for which a setter is described.private FieldDescription
Implementation.Context.Default.FieldSetterDelegation. fieldDescription
The field to write to.private FieldDescription
InvocationHandlerAdapter.ForField.Appender. fieldDescription
The field that contains the invocation handler.private FieldDescription
MethodCall.ArgumentLoader.ForField.ArgumentProvider. fieldDescription
The field being accessed.private FieldDescription
MethodCall.ArgumentLoader.ForField. fieldDescription
The field containing the loaded value.private FieldDescription
MethodCall.ArgumentLoader.ForInstance. fieldDescription
The description of the field.private FieldDescription
MethodCall.TargetHandler.ForField. fieldDescription
A description of the field that is the target.private FieldDescription
MethodCall.TargetHandler.ForField.Location.ForExplicitField. fieldDescription
The field to resolve.private FieldDescription
MethodCall.TerminationHandler.FieldSetting.Explicit. fieldDescription
The matcher being used for locating a field.private FieldDescription
MethodCall.TerminationHandler.FieldSetting. fieldDescription
The field to set.private FieldDescription
MethodDelegation.ImplementationDelegate.Compiled.ForField. fieldDescription
The field to delegate to.Fields in net.bytebuddy.implementation with type parameters of type FieldDescription Modifier and Type Field Description private ElementMatcher<? super FieldDescription>
MethodCall.TerminationHandler.FieldSetting.Implicit. matcher
The matcher being used for locating a field.private java.util.Map<FieldDescription,Implementation.Context.Default.DelegationRecord>
Implementation.Context.Default. registeredGetters
The registered getters.private java.util.Map<FieldDescription,Implementation.Context.Default.DelegationRecord>
Implementation.Context.Default. registeredSetters
The registered setters.Methods in net.bytebuddy.implementation that return FieldDescription Modifier and Type Method Description FieldDescription
FieldAccessor.FieldLocation.Absolute. resolve(MethodDescription instrumentedMethod)
Resolves the field description to use.FieldDescription
FieldAccessor.FieldLocation.Prepared. resolve(MethodDescription instrumentedMethod)
Resolves the field description to use.FieldDescription
FieldAccessor.FieldLocation.Relative.Prepared. resolve(MethodDescription instrumentedMethod)
Resolves the field description to use.FieldDescription
MethodCall.TargetHandler.ForField.Location.ForExplicitField. resolve(TypeDescription instrumentedType)
Resolves the field to invoke the method upon.FieldDescription
MethodCall.TargetHandler.ForField.Location.ForImplicitField. resolve(TypeDescription instrumentedType)
Resolves the field to invoke the method upon.FieldDescription
MethodCall.TargetHandler.ForField.Location. resolve(TypeDescription instrumentedType)
Resolves the field to invoke the method upon.protected abstract FieldDescription
MethodDelegation.ImplementationDelegate.ForField. resolve(TypeDescription instrumentedType)
Resolves the field to which is delegated.protected FieldDescription
MethodDelegation.ImplementationDelegate.ForField.WithInstance. resolve(TypeDescription instrumentedType)
protected FieldDescription
MethodDelegation.ImplementationDelegate.ForField.WithLookup. resolve(TypeDescription instrumentedType)
Methods in net.bytebuddy.implementation with parameters of type FieldDescription Modifier and Type Method Description protected ByteCodeAppender.Size
InvocationHandlerAdapter. apply(org.objectweb.asm.MethodVisitor methodVisitor, Implementation.Context implementationContext, MethodDescription instrumentedMethod, StackManipulation preparingManipulation, FieldDescription fieldDescription)
Applies an implementation that delegates to a invocation handler.static FieldAccessor.AssignerConfigurable
FieldAccessor. of(FieldDescription fieldDescription)
Defines a field accessor where the specified field is accessed.MethodCall
MethodCall.WithoutSpecifiedTarget. onField(FieldDescription fieldDescription)
Invokes a method on the object stored in the specified field.MethodDescription.InDefinedShape
Implementation.Context.Default. registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a getter for the givenFieldDescription
which might itself not be accessible from outside the class.MethodDescription.InDefinedShape
Implementation.Context.Disabled. registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a getter for the givenFieldDescription
which might itself not be accessible from outside the class.MethodDescription.InDefinedShape
MethodAccessorFactory.Illegal. registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a getter for the givenFieldDescription
which might itself not be accessible from outside the class.MethodDescription.InDefinedShape
MethodAccessorFactory. registerGetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a getter for the givenFieldDescription
which might itself not be accessible from outside the class.MethodDescription.InDefinedShape
Implementation.Context.Default. registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a setter for the givenFieldDescription
which might itself not be accessible from outside the class.MethodDescription.InDefinedShape
Implementation.Context.Disabled. registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a setter for the givenFieldDescription
which might itself not be accessible from outside the class.MethodDescription.InDefinedShape
MethodAccessorFactory.Illegal. registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a setter for the givenFieldDescription
which might itself not be accessible from outside the class.MethodDescription.InDefinedShape
MethodAccessorFactory. registerSetterFor(FieldDescription fieldDescription, MethodAccessorFactory.AccessType accessType)
Registers a setter for the givenFieldDescription
which might itself not be accessible from outside the class.protected StackManipulation
FieldAccessor.ForSetter.OfConstantValue. resolve(java.lang.Void unused, FieldDescription fieldDescription, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Resolves the stack manipulation to load the value being set.protected StackManipulation
FieldAccessor.ForSetter.OfDefaultValue. resolve(java.lang.Void initialized, FieldDescription fieldDescription, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Resolves the stack manipulation to load the value being set.protected StackManipulation
FieldAccessor.ForSetter.OfFieldValue. resolve(FieldAccessor.FieldLocation.Prepared target, FieldDescription fieldDescription, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Resolves the stack manipulation to load the value being set.protected StackManipulation
FieldAccessor.ForSetter.OfParameterValue. resolve(java.lang.Void unused, FieldDescription fieldDescription, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Resolves the stack manipulation to load the value being set.protected StackManipulation
FieldAccessor.ForSetter.OfReferenceValue. resolve(FieldDescription.InDefinedShape target, FieldDescription fieldDescription, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Resolves the stack manipulation to load the value being set.protected abstract StackManipulation
FieldAccessor.ForSetter. resolve(T initialized, FieldDescription fieldDescription, TypeDescription instrumentedType, MethodDescription instrumentedMethod)
Resolves the stack manipulation to load the value being set.MethodCall.FieldSetting
MethodCall. setsField(FieldDescription fieldDescription)
Sets the result of the method call as a value of the specified field.Implementation.Composable
FieldAccessor.ForImplicitProperty. setsFieldValueOf(FieldDescription fieldDescription)
Defines a setter of a value that sets another field's value.Implementation.Composable
FieldAccessor.PropertyConfigurable. setsFieldValueOf(FieldDescription fieldDescription)
Defines a setter of a value that sets another field's value.protected ByteCodeAppender
Implementation.Context.Default.FieldCacheEntry. storeIn(FieldDescription fieldDescription)
Returns a stack manipulation where the represented value is stored in the given field.Method parameters in net.bytebuddy.implementation with type arguments of type FieldDescription Modifier and Type Method Description MethodCall.FieldSetting
MethodCall. setsField(ElementMatcher<? super FieldDescription> matcher)
Sets the result of the method call as a value of the specified field.Constructors in net.bytebuddy.implementation with parameters of type FieldDescription Constructor Description Absolute(FieldDescription fieldDescription)
Creates an absolute field location.Appender(FieldDescription fieldDescription)
Creates a new appender.ArgumentProvider(FieldDescription fieldDescription)
Creates a new argument provider for a field access.Explicit(FieldDescription fieldDescription)
Creates a factory for a field-setting termination handler.FieldGetter(TypeDescription instrumentedType, FieldDescription fieldDescription, java.lang.String suffix)
Creates a new field getter.FieldGetterDelegation(MethodDescription.InDefinedShape methodDescription, Visibility visibility, FieldDescription fieldDescription)
Creates a new field getter implementation.FieldGetterDelegation(TypeDescription instrumentedType, java.lang.String suffix, MethodAccessorFactory.AccessType accessType, FieldDescription fieldDescription)
Creates a new field getter implementation.FieldSetter(TypeDescription instrumentedType, FieldDescription fieldDescription, java.lang.String suffix)
Creates a new field setter.FieldSetterDelegation(MethodDescription.InDefinedShape methodDescription, Visibility visibility, FieldDescription fieldDescription)
Creates a new field setter.FieldSetterDelegation(TypeDescription instrumentedType, java.lang.String suffix, MethodAccessorFactory.AccessType accessType, FieldDescription fieldDescription)
Creates a new field setter implementation.FieldSetting(FieldDescription fieldDescription)
Creates a new field-setting termination handler.ForExplicitField(FieldDescription fieldDescription)
Creates an explicit field location.ForField(FieldDescription fieldDescription, MethodDescription instrumentedMethod)
Creates a new argument loader for loading an existing field.ForField(FieldDescription fieldDescription)
Creates a new target handler for a field description.ForField(FieldDescription fieldDescription, java.util.List<MethodDelegationBinder.Record> records)
Creates a new compiled implementation delegate for a field delegation.ForInstance(FieldDescription fieldDescription)
Creates an argument loader that supplies the value of a static field as an argument.Constructor parameters in net.bytebuddy.implementation with type arguments of type FieldDescription Constructor Description Implicit(ElementMatcher<? super FieldDescription> matcher)
Creates a factory for a field-setting termination handler. -
Uses of FieldDescription in net.bytebuddy.implementation.attribute
Methods in net.bytebuddy.implementation.attribute with parameters of type FieldDescription Modifier and Type Method Description void
FieldAttributeAppender. apply(org.objectweb.asm.FieldVisitor fieldVisitor, FieldDescription fieldDescription, AnnotationValueFilter annotationValueFilter)
Applies this attribute appender to a given field visitor.void
FieldAttributeAppender.Compound. apply(org.objectweb.asm.FieldVisitor fieldVisitor, FieldDescription fieldDescription, AnnotationValueFilter annotationValueFilter)
Applies this attribute appender to a given field visitor.void
FieldAttributeAppender.Explicit. apply(org.objectweb.asm.FieldVisitor fieldVisitor, FieldDescription fieldDescription, AnnotationValueFilter annotationValueFilter)
Applies this attribute appender to a given field visitor.void
FieldAttributeAppender.ForInstrumentedField. apply(org.objectweb.asm.FieldVisitor fieldVisitor, FieldDescription fieldDescription, AnnotationValueFilter annotationValueFilter)
Applies this attribute appender to a given field visitor.void
FieldAttributeAppender.NoOp. apply(org.objectweb.asm.FieldVisitor fieldVisitor, FieldDescription fieldDescription, AnnotationValueFilter annotationValueFilter)
Applies this attribute appender to a given field visitor.AnnotationValueFilter
AnnotationValueFilter.Default. on(FieldDescription fieldDescription)
Creates an annotation value filter for writing annotations on a field.AnnotationValueFilter
AnnotationValueFilter.Factory. on(FieldDescription fieldDescription)
Creates an annotation value filter for writing annotations on a field. -
Uses of FieldDescription in net.bytebuddy.implementation.bind.annotation
Fields in net.bytebuddy.implementation.bind.annotation declared as FieldDescription Modifier and Type Field Description private FieldDescription
FieldProxy.Binder.AccessorProxy. fieldDescription
The field that is being accessed.private FieldDescription
FieldProxy.Binder.FieldGetter. fieldDescription
The field that is being accessed.private FieldDescription
FieldProxy.Binder.FieldSetter. fieldDescription
The field that is being accessed.private FieldDescription
FieldProxy.Binder.InstanceFieldConstructor.Appender. fieldDescription
The field to be set within the constructor.private FieldDescription
Morph.Binder.RedirectionProxy.InstanceFieldConstructor.Appender. fieldDescription
The field that carries the instance on which the super method is invoked.Methods in net.bytebuddy.implementation.bind.annotation with parameters of type FieldDescription Modifier and Type Method Description DynamicType.Builder<?>
FieldProxy.Binder.FieldResolver. apply(DynamicType.Builder<?> builder, FieldDescription fieldDescription, Assigner assigner, MethodAccessorFactory methodAccessorFactory)
Applies this field resolver to a dynamic type.DynamicType.Builder<?>
FieldProxy.Binder.FieldResolver.ForGetter. apply(DynamicType.Builder<?> builder, FieldDescription fieldDescription, Assigner assigner, MethodAccessorFactory methodAccessorFactory)
Applies this field resolver to a dynamic type.DynamicType.Builder<?>
FieldProxy.Binder.FieldResolver.ForGetterSetterPair. apply(DynamicType.Builder<?> builder, FieldDescription fieldDescription, Assigner assigner, MethodAccessorFactory methodAccessorFactory)
Applies this field resolver to a dynamic type.DynamicType.Builder<?>
FieldProxy.Binder.FieldResolver.ForSetter. apply(DynamicType.Builder<?> builder, FieldDescription fieldDescription, Assigner assigner, MethodAccessorFactory methodAccessorFactory)
Applies this field resolver to a dynamic type.DynamicType.Builder<?>
FieldProxy.Binder.FieldResolver.Unresolved. apply(DynamicType.Builder<?> builder, FieldDescription fieldDescription, Assigner assigner, MethodAccessorFactory methodAccessorFactory)
Applies this field resolver to a dynamic type.protected MethodDelegationBinder.ParameterBinding<?>
FieldProxy.Binder. bind(FieldDescription fieldDescription, AnnotationDescription.Loadable<FieldProxy> annotation, MethodDescription source, ParameterDescription target, Implementation.Target implementationTarget, Assigner assigner)
protected MethodDelegationBinder.ParameterBinding<?>
FieldValue.Binder.Delegate. bind(FieldDescription fieldDescription, AnnotationDescription.Loadable<FieldValue> annotation, MethodDescription source, ParameterDescription target, Implementation.Target implementationTarget, Assigner assigner)
protected abstract MethodDelegationBinder.ParameterBinding<?>
TargetMethodAnnotationDrivenBinder.ParameterBinder.ForFieldBinding. bind(FieldDescription fieldDescription, AnnotationDescription.Loadable<S> annotation, MethodDescription source, ParameterDescription target, Implementation.Target implementationTarget, Assigner assigner)
Creates a parameter binding for the given target parameter.FieldProxy.Binder.FieldResolver
FieldProxy.Binder.FieldResolver.Factory.Duplex. resolve(TypeDescription parameterType, FieldDescription fieldDescription)
Creates a field resolver.FieldProxy.Binder.FieldResolver
FieldProxy.Binder.FieldResolver.Factory. resolve(TypeDescription parameterType, FieldDescription fieldDescription)
Creates a field resolver.FieldProxy.Binder.FieldResolver
FieldProxy.Binder.FieldResolver.Factory.Simplex. resolve(TypeDescription parameterType, FieldDescription fieldDescription)
Creates a field resolver.Constructors in net.bytebuddy.implementation.bind.annotation with parameters of type FieldDescription Constructor Description AccessorProxy(FieldDescription fieldDescription, TypeDescription instrumentedType, FieldProxy.Binder.FieldResolver fieldResolver, Assigner assigner, boolean serializableProxy)
FieldGetter(FieldDescription fieldDescription, Assigner assigner, MethodAccessorFactory methodAccessorFactory)
Creates a new getter implementation.FieldSetter(FieldDescription fieldDescription, Assigner assigner, MethodAccessorFactory methodAccessorFactory)
Creates a new setter implementation. -
Uses of FieldDescription in net.bytebuddy.implementation.bytecode.member
Methods in net.bytebuddy.implementation.bytecode.member with parameters of type FieldDescription Modifier and Type Method Description static FieldAccess.Defined
FieldAccess. forField(FieldDescription fieldDescription)
Creates a field access representation for a given field.protected static FieldAccess.Defined
FieldAccess.OfGenericField. of(FieldDescription fieldDescription, FieldAccess.Defined fieldAccess)
Creates a generic access dispatcher for a given field. -
Uses of FieldDescription in net.bytebuddy.matcher
Classes in net.bytebuddy.matcher with type parameters of type FieldDescription Modifier and Type Class Description class
FieldTypeMatcher<T extends FieldDescription>
An element matcher that matches a field's type.Methods in net.bytebuddy.matcher with type parameters of type FieldDescription Modifier and Type Method Description static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. anyOf(java.lang.reflect.Field... value)
Creates a matcher that matches any of the given fields asFieldDescription
s by theObject.equals(Object)
method.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. definedField(ElementMatcher<? super FieldDescription.InDefinedShape> matcher)
Matches a field in its defined shape.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. fieldType(java.lang.Class<?> fieldType)
Matches a field's raw type against the provided matcher.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. fieldType(TypeDescription fieldType)
Matches a field's raw type against the provided matcher.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. fieldType(ElementMatcher<? super TypeDescription> matcher)
Matches a field's raw type against the provided matcher.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. genericFieldType(java.lang.reflect.Type fieldType)
Matches a field's generic type against the provided matcher.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. genericFieldType(TypeDescription.Generic fieldType)
Matches a field's generic type against the provided matcher.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. genericFieldType(ElementMatcher<? super TypeDescription.Generic> matcher)
Matches a field's generic type against the provided matcher.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. is(java.lang.reflect.Field field)
Exactly matches a given field as aFieldDescription
in its defined shape.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. is(FieldDescription.InDefinedShape field)
Exactly matches a given field as aFieldDescription
in its defined shape.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. isTransient()
Matches atransient
field.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. isVolatile()
Matches avolatile
field.static <T extends FieldDescription>
ElementMatcher.Junction<T>ElementMatchers. noneOf(java.lang.reflect.Field... value)
Creates a matcher that matches none of the given methods asFieldDescription
s by theObject.equals(Object)
method.Methods in net.bytebuddy.matcher that return types with arguments of type FieldDescription Modifier and Type Method Description ElementMatcher<? super FieldDescription>
LatentMatcher.ForFieldToken. resolve(TypeDescription typeDescription)
Resolves the element matcher this instance represents for the supplied type description.Methods in net.bytebuddy.matcher with parameters of type FieldDescription Modifier and Type Method Description boolean
LatentMatcher.ForFieldToken.ResolvedMatcher. matches(FieldDescription target)
Matches a target against this element matcher.Method parameters in net.bytebuddy.matcher with type arguments of type FieldDescription Modifier and Type Method Description static <T extends TypeDefinition>
ElementMatcher.Junction<T>ElementMatchers. declaresField(ElementMatcher<? super FieldDescription> matcher)
Matches a type by a another matcher that is applied on any of its declared fields.Constructor parameters in net.bytebuddy.matcher with type arguments of type FieldDescription Constructor Description DeclaringFieldMatcher(ElementMatcher<? super FieldList<? extends FieldDescription>> matcher)
Creates a new matcher for a type's declared fields. -
Uses of FieldDescription in net.bytebuddy.pool
Classes in net.bytebuddy.pool that implement FieldDescription Modifier and Type Class Description private class
TypePool.Default.LazyTypeDescription.LazyFieldDescription
A lazy field description that only resolved type references when required. -
Uses of FieldDescription in net.bytebuddy.utility
Methods in net.bytebuddy.utility with parameters of type FieldDescription Modifier and Type Method Description static JavaConstant.MethodType
JavaConstant.MethodType. ofGetter(FieldDescription fieldDescription)
Returns a method type for a getter of the given field.static JavaConstant.MethodType
JavaConstant.MethodType. ofSetter(FieldDescription fieldDescription)
Returns a method type for a setter of the given field.
-