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()
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. -
Uses of MethodDescription.SignatureToken in net.bytebuddy.dynamic.scaffold
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)
MethodGraph.Node
MethodGraph.Empty. locate(MethodDescription.SignatureToken token)
MethodGraph.Node
MethodGraph.Linked.Delegation. locate(MethodDescription.SignatureToken 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)
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
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()
java.util.Map<MethodDescription.SignatureToken,MethodRebaseResolver.Resolution>
MethodRebaseResolver.Disabled. asTokenMap()
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)
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 Implementation.SpecialMethodInvocation
SubclassImplementationTarget. invokeSuper(MethodDescription.SignatureToken token)
-
Uses of MethodDescription.SignatureToken in net.bytebuddy.implementation
-
Uses of MethodDescription.SignatureToken in net.bytebuddy.matcher
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.
-