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