Uses of Class
net.bytebuddy.description.field.FieldDescription.Token
-
Packages that use FieldDescription.Token Package Description net.bytebuddy.description.field Contains descriptions of Java fields.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.matcher 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.Token Modifier and Type Field Description private java.util.List<? extends FieldDescription.Token>
FieldList.ForTokens. tokens
A list of the represented fields' tokens.Methods in net.bytebuddy.description.field that return FieldDescription.Token Modifier and Type Method Description FieldDescription.Token
FieldDescription.Token. accept(TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor)
Transforms the types represented by this token by applying the given visitor to them.FieldDescription.Token
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.Token Modifier and Type Method Description ByteCodeElement.Token.TokenList<FieldDescription.Token>
FieldList.AbstractBase. asTokenList(ElementMatcher<? super TypeDescription> matcher)
Transforms the list of field descriptions into a list of detached tokens.ByteCodeElement.Token.TokenList<FieldDescription.Token>
FieldList. asTokenList(ElementMatcher<? super TypeDescription> matcher)
Transforms the list of field descriptions into a list of detached tokens.ByteCodeElement.Token.TokenList<FieldDescription.Token>
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.Token Constructor Description ForTokens(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.Token Constructor Description ForTokens(TypeDescription declaringType, java.util.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.Token Modifier and Type Field Description private FieldDescription.Token
DynamicType.Builder.AbstractBase.Adapter.FieldDefinitionAdapter. token
The token representing the current field definition.private FieldDescription.Token
Transformer.ForField.TransformedField. token
A field token representing the transformed field.Fields in net.bytebuddy.dynamic with type parameters of type FieldDescription.Token Modifier and Type Field Description private Transformer<FieldDescription.Token>
Transformer.ForField. transformer
The token transformer to apply to a transformed field.Methods in net.bytebuddy.dynamic that return FieldDescription.Token Modifier and Type Method Description FieldDescription.Token
Transformer.ForField.FieldModifierTransformer. transform(TypeDescription instrumentedType, FieldDescription.Token target)
Transforms the supplied target.Methods in net.bytebuddy.dynamic with parameters of type FieldDescription.Token Modifier and Type Method Description FieldDescription.Token
Transformer.ForField.FieldModifierTransformer. transform(TypeDescription instrumentedType, FieldDescription.Token target)
Transforms the supplied target.Constructors in net.bytebuddy.dynamic with parameters of type FieldDescription.Token Constructor Description FieldDefinitionAdapter(FieldDescription.Token token)
Creates a new field definition adapter.FieldDefinitionAdapter(FieldAttributeAppender.Factory fieldAttributeAppenderFactory, Transformer<FieldDescription> transformer, java.lang.Object defaultValue, FieldDescription.Token token)
Creates a new field definition adapter.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.Token Constructor Description ForField(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.Token Modifier and Type Field Description private java.util.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.Token Modifier and Type Method Description InstrumentedType.WithFlexibleName
InstrumentedType.Default. withField(FieldDescription.Token token)
Creates a new instrumented type that includes a new field.InstrumentedType.WithFlexibleName
InstrumentedType.Frozen. withField(FieldDescription.Token token)
Creates a new instrumented type that includes a new field.InstrumentedType
InstrumentedType. withField(FieldDescription.Token token)
Creates a new instrumented type that includes a new field.InstrumentedType.WithFlexibleName
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.Token Modifier and Type Field Description private FieldDescription.Token
LatentMatcher.ForFieldToken. token
A token representing the field being matched.Constructors in net.bytebuddy.matcher with parameters of type FieldDescription.Token Constructor Description ForFieldToken(FieldDescription.Token token)
Creates a new latent matcher for a field token.
-