Uses of Interface
net.bytebuddy.dynamic.scaffold.MethodGraph.Node
-
Packages that use MethodGraph.Node Package Description 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.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of MethodGraph.Node in net.bytebuddy.dynamic.scaffold
Classes in net.bytebuddy.dynamic.scaffold that implement MethodGraph.Node Modifier and Type Class Description protected static class
MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.Node
A node implementation representing an ambiguous method resolution.protected static class
MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.Node
A node implementation representing a non-ambiguous method.static class
MethodGraph.Node.Simple
A simple implementation of a resolved node of a method without bridges.static class
MethodGraph.Node.Unresolved
A canonical implementation of an unresolved node.Methods in net.bytebuddy.dynamic.scaffold that return MethodGraph.Node Modifier and Type Method Description MethodGraph.Node
MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous. asNode(MethodGraph.Compiler.Default.Merger merger)
MethodGraph.Node
MethodGraph.Compiler.Default.Key.Store.Entry. asNode(MethodGraph.Compiler.Default.Merger merger)
Transforms this entry into a node.MethodGraph.Node
MethodGraph.Compiler.Default.Key.Store.Entry.Initial. asNode(MethodGraph.Compiler.Default.Merger merger)
MethodGraph.Node
MethodGraph.Compiler.Default.Key.Store.Entry.Resolved. asNode(MethodGraph.Compiler.Default.Merger merger)
MethodGraph.Node
MethodGraph.NodeList. get(int index)
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)
Method parameters in net.bytebuddy.dynamic.scaffold with type arguments of type MethodGraph.Node Modifier and Type Method Description protected MethodGraph.NodeList
MethodGraph.NodeList. wrap(java.util.List<MethodGraph.Node> values)
Constructor parameters in net.bytebuddy.dynamic.scaffold with type arguments of type MethodGraph.Node Constructor Description Graph(java.util.LinkedHashMap<MethodGraph.Compiler.Default.Key<MethodDescription.TypeToken>,MethodGraph.Node> entries)
Creates a new graph.NodeList(java.util.List<? extends MethodGraph.Node> nodes)
Creates a list of nodes.Simple(java.util.LinkedHashMap<MethodDescription.SignatureToken,MethodGraph.Node> nodes)
Creates a new simple method graph. -
Uses of MethodGraph.Node in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation with parameters of type MethodGraph.Node Modifier and Type Method Description protected abstract Implementation.SpecialMethodInvocation
Implementation.Target.AbstractBase.DefaultMethodInvocation. apply(MethodGraph.Node node, TypeDescription targetType)
Resolves a default method invocation for a given node.
-