Uses of Class
net.bytebuddy.description.method.MethodDescription.SignatureToken
-
Packages that use MethodDescription.SignatureToken Package Description net.bytebuddy.description.method Contains descriptions of Java methods and constructors as well as their parameters.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.dynamic.scaffold.subclass All classes and types in this package are related to creating aDynamicType
by creating a subclass of a given type.net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls.net.bytebuddy.matcher Contains an API for matching Java byte code entities. -
-
Uses of MethodDescription.SignatureToken in net.bytebuddy.description.method
Methods in net.bytebuddy.description.method that return MethodDescription.SignatureToken Modifier and Type Method Description MethodDescription.SignatureToken
MethodDescription.AbstractBase. asSignatureToken()
Returns a signature token representing this method.MethodDescription.SignatureToken
MethodDescription. asSignatureToken()
Returns a signature token representing this method.MethodDescription.SignatureToken
MethodDescription.Token. asSignatureToken(TypeDescription declaringType)
Creates a signature token that represents the method that is represented by this token.Methods in net.bytebuddy.description.method that return types with arguments of type MethodDescription.SignatureToken Modifier and Type Method Description java.util.List<MethodDescription.SignatureToken>
MethodList.AbstractBase. asSignatureTokenList()
Returns a list of signature tokens for this list of methods.java.util.List<MethodDescription.SignatureToken>
MethodList.AbstractBase. asSignatureTokenList(ElementMatcher<? super TypeDescription> matcher, TypeDescription typeDescription)
Returns a list of signature tokens for this list of methods.java.util.List<MethodDescription.SignatureToken>
MethodList. asSignatureTokenList()
Returns a list of signature tokens for this list of methods.java.util.List<MethodDescription.SignatureToken>
MethodList. asSignatureTokenList(ElementMatcher<? super TypeDescription> matcher, TypeDescription typeDescription)
Returns a list of signature tokens for this list of methods.java.util.List<MethodDescription.SignatureToken>
MethodList.Empty. asSignatureTokenList()
Returns a list of signature tokens for this list of methods.java.util.List<MethodDescription.SignatureToken>
MethodList.Empty. asSignatureTokenList(ElementMatcher<? super TypeDescription> matcher, TypeDescription typeDescription)
Returns a list of signature tokens for this list of methods. -
Uses of MethodDescription.SignatureToken in net.bytebuddy.dynamic.scaffold
Fields in net.bytebuddy.dynamic.scaffold with type parameters of type MethodDescription.SignatureToken Modifier and Type Field Description private java.util.LinkedHashMap<MethodDescription.SignatureToken,MethodGraph.Node>
MethodGraph.Simple. nodes
The nodes represented by this method graph.Methods in net.bytebuddy.dynamic.scaffold with parameters of type MethodDescription.SignatureToken Modifier and Type Method Description MethodGraph.Node
MethodGraph.Compiler.Default.Key.Store.Graph. locate(MethodDescription.SignatureToken token)
Locates a node in this graph which represents the provided method token.MethodGraph.Node
MethodGraph.Empty. locate(MethodDescription.SignatureToken token)
Locates a node in this graph which represents the provided method token.MethodGraph.Node
MethodGraph.Linked.Delegation. locate(MethodDescription.SignatureToken token)
Locates a node in this graph which represents the provided method token.MethodGraph.Node
MethodGraph. locate(MethodDescription.SignatureToken token)
Locates a node in this graph which represents the provided method token.MethodGraph.Node
MethodGraph.Simple. locate(MethodDescription.SignatureToken token)
Locates a node in this graph which represents the provided method token.protected static MethodGraph.Compiler.Default.Key.Detached
MethodGraph.Compiler.Default.Key.Detached. of(MethodDescription.SignatureToken token)
Creates a new detached key of the given method token.Constructor parameters in net.bytebuddy.dynamic.scaffold with type arguments of type MethodDescription.SignatureToken Constructor Description Simple(java.util.LinkedHashMap<MethodDescription.SignatureToken,MethodGraph.Node> nodes)
Creates a new simple method graph. -
Uses of MethodDescription.SignatureToken in net.bytebuddy.dynamic.scaffold.inline
Fields in net.bytebuddy.dynamic.scaffold.inline with type parameters of type MethodDescription.SignatureToken Modifier and Type Field Description private java.util.Map<MethodDescription.SignatureToken,MethodRebaseResolver.Resolution>
RebaseImplementationTarget. rebaseableMethods
A mapping of the instrumented type's declared methods by each method's token.Methods in net.bytebuddy.dynamic.scaffold.inline that return types with arguments of type MethodDescription.SignatureToken Modifier and Type Method Description java.util.Map<MethodDescription.SignatureToken,MethodRebaseResolver.Resolution>
MethodRebaseResolver. asTokenMap()
Returns a map of all rebasable methods' signature tokens to their resolution.java.util.Map<MethodDescription.SignatureToken,MethodRebaseResolver.Resolution>
MethodRebaseResolver.Default. asTokenMap()
Returns a map of all rebasable methods' signature tokens to their resolution.java.util.Map<MethodDescription.SignatureToken,MethodRebaseResolver.Resolution>
MethodRebaseResolver.Disabled. asTokenMap()
Returns a map of all rebasable methods' signature tokens to their resolution.Methods in net.bytebuddy.dynamic.scaffold.inline with parameters of type MethodDescription.SignatureToken Modifier and Type Method Description Implementation.SpecialMethodInvocation
RebaseImplementationTarget. invokeSuper(MethodDescription.SignatureToken token)
Creates a special method invocation for invoking the super method of the given method.Method parameters in net.bytebuddy.dynamic.scaffold.inline with type arguments of type MethodDescription.SignatureToken Modifier and Type Method Description static MethodRebaseResolver
MethodRebaseResolver.Default. make(TypeDescription instrumentedType, java.util.Set<? extends MethodDescription.SignatureToken> rebaseables, ClassFileVersion classFileVersion, AuxiliaryType.NamingStrategy auxiliaryTypeNamingStrategy, MethodNameTransformer methodNameTransformer)
Creates a new method rebase resolver.Constructor parameters in net.bytebuddy.dynamic.scaffold.inline with type arguments of type MethodDescription.SignatureToken Constructor Description RebaseImplementationTarget(TypeDescription instrumentedType, MethodGraph.Linked methodGraph, Implementation.Target.AbstractBase.DefaultMethodInvocation defaultMethodInvocation, java.util.Map<MethodDescription.SignatureToken,MethodRebaseResolver.Resolution> rebaseableMethods)
Creates a rebase implementation target. -
Uses of MethodDescription.SignatureToken in net.bytebuddy.dynamic.scaffold.subclass
Methods in net.bytebuddy.dynamic.scaffold.subclass with parameters of type MethodDescription.SignatureToken Modifier and Type Method Description private Implementation.SpecialMethodInvocation
SubclassImplementationTarget. invokeConstructor(MethodDescription.SignatureToken token)
Resolves a special method invocation for a constructor invocation.private Implementation.SpecialMethodInvocation
SubclassImplementationTarget. invokeMethod(MethodDescription.SignatureToken token)
Resolves a special method invocation for a non-constructor invocation.Implementation.SpecialMethodInvocation
SubclassImplementationTarget. invokeSuper(MethodDescription.SignatureToken token)
Creates a special method invocation for invoking the super method of the given method. -
Uses of MethodDescription.SignatureToken in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation with parameters of type MethodDescription.SignatureToken Modifier and Type Method Description Implementation.SpecialMethodInvocation
Implementation.Target.AbstractBase. invokeDefault(MethodDescription.SignatureToken token)
Creates a special method invocation for invoking a default method with the given token.Implementation.SpecialMethodInvocation
Implementation.Target.AbstractBase. invokeDefault(MethodDescription.SignatureToken token, TypeDescription targetType)
Creates a special method invocation for invoking a default method.Implementation.SpecialMethodInvocation
Implementation.Target. invokeDefault(MethodDescription.SignatureToken token)
Creates a special method invocation for invoking a default method with the given token.Implementation.SpecialMethodInvocation
Implementation.Target. invokeDefault(MethodDescription.SignatureToken token, TypeDescription targetType)
Creates a special method invocation for invoking a default method.Implementation.SpecialMethodInvocation
Implementation.Target.AbstractBase. invokeDominant(MethodDescription.SignatureToken token)
Invokes a dominant method, i.e.Implementation.SpecialMethodInvocation
Implementation.Target. invokeDominant(MethodDescription.SignatureToken token)
Invokes a dominant method, i.e.Implementation.SpecialMethodInvocation
Implementation.Target. invokeSuper(MethodDescription.SignatureToken token)
Creates a special method invocation for invoking the super method of the given method. -
Uses of MethodDescription.SignatureToken in net.bytebuddy.matcher
Fields in net.bytebuddy.matcher declared as MethodDescription.SignatureToken Modifier and Type Field Description private MethodDescription.SignatureToken
LatentMatcher.ForMethodToken.ResolvedMatcher. signatureToken
The signature token representing the matched field.Fields in net.bytebuddy.matcher with type parameters of type MethodDescription.SignatureToken Modifier and Type Field Description private ElementMatcher<? super MethodDescription.SignatureToken>
SignatureTokenMatcher. matcher
The matcher to match the signature token against.Methods in net.bytebuddy.matcher with parameters of type MethodDescription.SignatureToken Modifier and Type Method Description static <T extends MethodDescription>
ElementMatcher.Junction<T>ElementMatchers. hasSignature(MethodDescription.SignatureToken token)
Only matches method descriptions that yield the provided signature token.Constructors in net.bytebuddy.matcher with parameters of type MethodDescription.SignatureToken Constructor Description ResolvedMatcher(MethodDescription.SignatureToken signatureToken)
Creates a new resolved matcher.Constructor parameters in net.bytebuddy.matcher with type arguments of type MethodDescription.SignatureToken Constructor Description SignatureTokenMatcher(ElementMatcher<? super MethodDescription.SignatureToken> matcher)
Creates a new signature token matcher.
-