Uses of Class
net.bytebuddy.description.method.ParameterDescription.Token
Packages that use ParameterDescription.Token
Package
Description
Contains descriptions of Java methods and constructors as well as their parameters.
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.
-
Uses of ParameterDescription.Token in net.bytebuddy.description.method
Fields in net.bytebuddy.description.method with type parameters of type ParameterDescription.TokenModifier and TypeFieldDescriptionprivate final List
<? extends ParameterDescription.Token> MethodDescription.Latent.parameterTokens
The parameter tokens describing this method.private final List
<? extends ParameterDescription.Token> MethodDescription.Token.parameterTokens
The parameter tokens of the represented method.private final List
<? extends ParameterDescription.Token> ParameterList.ForTokens.tokens
The list of tokens to represent.Methods in net.bytebuddy.description.method that return ParameterDescription.TokenModifier and TypeMethodDescriptionParameterDescription.Token.accept
(TypeDescription.Generic.Visitor<? extends TypeDescription.Generic> visitor) Transforms the types represented by this token by applying the given visitor to them.ParameterDescription.AbstractBase.asToken
(ElementMatcher<? super TypeDescription> matcher) Returns a token representative of this type dependant.ParameterDescription.Token.TypeList.get
(int index) Methods in net.bytebuddy.description.method that return types with arguments of type ParameterDescription.TokenModifier and TypeMethodDescriptionParameterList.AbstractBase.asTokenList
(ElementMatcher<? super TypeDescription> matcher) Transforms the list of parameter descriptions into a list of detached tokens.ParameterList.asTokenList
(ElementMatcher<? super TypeDescription> matcher) Transforms the list of parameter descriptions into a list of detached tokens.ParameterList.Empty.asTokenList
(ElementMatcher<? super TypeDescription> matcher) Transforms the list of parameter descriptions into a list of detached tokens.MethodDescription.Token.getParameterTokens()
Returns the parameter tokens of the represented method.Constructors in net.bytebuddy.description.method with parameters of type ParameterDescription.TokenModifierConstructorDescriptionLatent
(MethodDescription.InDefinedShape declaringMethod, ParameterDescription.Token token, int index, int offset) Creates a latent parameter description.Constructor parameters in net.bytebuddy.description.method with type arguments of type ParameterDescription.TokenModifierConstructorDescriptionForTokens
(MethodDescription.InDefinedShape declaringMethod, List<? extends ParameterDescription.Token> tokens) Creates a new parameter list for the provided tokens. -
Uses of ParameterDescription.Token in net.bytebuddy.dynamic
Fields in net.bytebuddy.dynamic declared as ParameterDescription.TokenModifier and TypeFieldDescriptionprivate final ParameterDescription.Token
Transformer.ForMethod.TransformedMethod.TransformedParameter.parameterToken
The token representing the transformed method parameter's properties.private final ParameterDescription.Token
DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter.ParameterAnnotationAdapter.token
The token of the currently defined parameter.private final ParameterDescription.Token
DynamicType.Builder.AbstractBase.Adapter.MethodDefinitionAdapter.SimpleParameterAnnotationAdapter.token
The token of the currently defined parameter.Constructors in net.bytebuddy.dynamic with parameters of type ParameterDescription.TokenModifierConstructorDescriptionprotected
Creates a new parameter annotation adapter.protected
Creates a new simple parameter annotation adapter.protected
TransformedParameter
(int index, ParameterDescription.Token parameterToken) Creates a transformed parameter.