Uses of Class
net.bytebuddy.description.field.FieldDescription.Token
Packages that use FieldDescription.Token
Package
Description
Contains descriptions of Java fields.
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.
This package contains helper types and implementations that are responsible for the actual writing of a byte array
representing a Java class.
Contains an API for matching Java byte code entities.
-
Uses of FieldDescription.Token in net.bytebuddy.description.field
Fields in net.bytebuddy.description.field with type parameters of type FieldDescription.TokenModifier and TypeFieldDescriptionprivate final List<? extends FieldDescription.Token>
FieldList.ForTokens.tokens
A list of the represented fields' tokens.Methods in net.bytebuddy.description.field that return FieldDescription.TokenModifier and TypeMethodDescriptionFieldDescription.Token.accept
(TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor) Transforms the types represented by this token by applying the given visitor to them.FieldDescription.AbstractBase.asToken
(ElementMatcher<? super TypeDescription> matcher) Returns a token representative of this type dependant.Methods in net.bytebuddy.description.field that return types with arguments of type FieldDescription.TokenModifier and TypeMethodDescriptionFieldList.AbstractBase.asTokenList
(ElementMatcher<? super TypeDescription> matcher) Transforms the list of field descriptions into a list of detached tokens.FieldList.asTokenList
(ElementMatcher<? super TypeDescription> matcher) Transforms the list of field descriptions into a list of detached tokens.FieldList.Empty.asTokenList
(ElementMatcher<? super TypeDescription> matcher) Transforms the list of field descriptions into a list of detached tokens.Constructors in net.bytebuddy.description.field with parameters of type FieldDescription.TokenModifierConstructorDescriptionForTokens
(TypeDescription declaringType, FieldDescription.Token... token) Creates a new field list from a list of field tokens.Latent
(TypeDescription declaringType, FieldDescription.Token token) Creates a new latent field description.Constructor parameters in net.bytebuddy.description.field with type arguments of type FieldDescription.TokenModifierConstructorDescriptionForTokens
(TypeDescription declaringType, List<? extends FieldDescription.Token> tokens) Creates a new field list from a list of field tokens. -
Uses of FieldDescription.Token in net.bytebuddy.dynamic
Fields in net.bytebuddy.dynamic declared as FieldDescription.TokenModifier and TypeFieldDescriptionprivate final FieldDescription.Token
DynamicType.Builder.AbstractBase.Adapter.FieldDefinitionAdapter.token
The token representing the current field definition.private final FieldDescription.Token
Transformer.ForField.TransformedField.token
A field token representing the transformed field.Fields in net.bytebuddy.dynamic with type parameters of type FieldDescription.TokenModifier and TypeFieldDescriptionprivate final Transformer<FieldDescription.Token>
Transformer.ForField.transformer
The token transformer to apply to a transformed field.Methods in net.bytebuddy.dynamic that return FieldDescription.TokenModifier and TypeMethodDescriptionTransformer.ForField.FieldModifierTransformer.transform
(TypeDescription instrumentedType, FieldDescription.Token target) Transforms the supplied target.Methods in net.bytebuddy.dynamic with parameters of type FieldDescription.TokenModifier and TypeMethodDescriptionTransformer.ForField.FieldModifierTransformer.transform
(TypeDescription instrumentedType, FieldDescription.Token target) Transforms the supplied target.Constructors in net.bytebuddy.dynamic with parameters of type FieldDescription.TokenModifierConstructorDescriptionprotected
Creates a new field definition adapter.protected
FieldDefinitionAdapter
(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, Object defaultValue, FieldDescription.Token token) Creates a new field definition adapter.protected
TransformedField
(TypeDescription instrumentedType, TypeDefinition declaringType, FieldDescription.Token token, FieldDescription.InDefinedShape fieldDescription) Creates a new transformed field.Constructor parameters in net.bytebuddy.dynamic with type arguments of type FieldDescription.TokenModifierConstructorDescriptionForField
(Transformer<FieldDescription.Token> transformer) Creates a new simple field transformer. -
Uses of FieldDescription.Token in net.bytebuddy.dynamic.scaffold
Fields in net.bytebuddy.dynamic.scaffold with type parameters of type FieldDescription.TokenModifier and TypeFieldDescriptionprivate final List<? extends FieldDescription.Token>
InstrumentedType.Default.fieldTokens
A list of field tokens describing the fields of the instrumented type.Methods in net.bytebuddy.dynamic.scaffold with parameters of type FieldDescription.TokenModifier and TypeMethodDescriptionInstrumentedType.Default.withAuxiliaryField
(FieldDescription.Token token, Object value) Creates a new instrumented type that includes a new field.InstrumentedType.Frozen.withAuxiliaryField
(FieldDescription.Token token, Object value) Creates a new instrumented type that includes a new field.InstrumentedType.withAuxiliaryField
(FieldDescription.Token token, Object value) Creates a new instrumented type that includes a new field.InstrumentedType.WithFlexibleName.withAuxiliaryField
(FieldDescription.Token token, Object value) Creates a new instrumented type that includes a new field.InstrumentedType.Default.withField
(FieldDescription.Token token) Creates a new instrumented type that includes a new field.InstrumentedType.Frozen.withField
(FieldDescription.Token token) Creates a new instrumented type that includes a new field.InstrumentedType.withField
(FieldDescription.Token token) Creates a new instrumented type that includes a new field.InstrumentedType.WithFlexibleName.withField
(FieldDescription.Token token) Creates a new instrumented type that includes a new field. -
Uses of FieldDescription.Token in net.bytebuddy.matcher
Fields in net.bytebuddy.matcher declared as FieldDescription.TokenModifier and TypeFieldDescriptionprivate final FieldDescription.Token
LatentMatcher.ForFieldToken.token
A token representing the field being matched.Constructors in net.bytebuddy.matcher with parameters of type FieldDescription.TokenModifierConstructorDescriptionCreates a new latent matcher for a field token.