Uses of Interface
net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Store.Entry
Packages that use MethodGraph.Compiler.Default.Key.Store.Entry
Package
Description
This package contains helper types and implementations that are responsible for the actual writing of a byte array
representing a Java class.
-
Uses of MethodGraph.Compiler.Default.Key.Store.Entry in net.bytebuddy.dynamic.scaffold
Classes in net.bytebuddy.dynamic.scaffold that implement MethodGraph.Compiler.Default.Key.Store.EntryModifier and TypeClassDescriptionstatic class
An entry representing an ambiguous node resolution.static class
An entry in its initial state before registering any method as a representative.static class
An entry representing a non-ambiguous node resolution.Fields in net.bytebuddy.dynamic.scaffold with type parameters of type MethodGraph.Compiler.Default.Key.Store.EntryModifier and TypeFieldDescriptionprivate final LinkedHashMap
<MethodGraph.Compiler.Default.Key.Harmonized<V>, MethodGraph.Compiler.Default.Key.Store.Entry<V>> MethodGraph.Compiler.Default.Key.Store.entries
A mapping of harmonized keys to their represented entry.Methods in net.bytebuddy.dynamic.scaffold that return MethodGraph.Compiler.Default.Key.Store.EntryModifier and TypeMethodDescriptionprivate static <W> MethodGraph.Compiler.Default.Key.Store.Entry
<W> MethodGraph.Compiler.Default.Key.Store.combine
(MethodGraph.Compiler.Default.Key.Store.Entry<W> left, MethodGraph.Compiler.Default.Key.Store.Entry<W> right) Combines the two given stores.MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.extendBy
(MethodDescription methodDescription, MethodGraph.Compiler.Default.Harmonizer<U> harmonizer) Extends this entry by the given method.MethodGraph.Compiler.Default.Key.Store.Entry.extendBy
(MethodDescription methodDescription, MethodGraph.Compiler.Default.Harmonizer<W> harmonizer) Extends this entry by the given method.MethodGraph.Compiler.Default.Key.Store.Entry.Initial.extendBy
(MethodDescription methodDescription, MethodGraph.Compiler.Default.Harmonizer<U> harmonizer) Extends this entry by the given method.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.extendBy
(MethodDescription methodDescription, MethodGraph.Compiler.Default.Harmonizer<U> harmonizer) Extends this entry by the given method.MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<U> entry) Injects the given key into this entry.MethodGraph.Compiler.Default.Key.Store.Entry.Initial.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<U> entry) Injects the given key into this entry.MethodGraph.Compiler.Default.Key.Store.Entry.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<W> entry) Injects the given key into this entry.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<U> entry) Injects the given key into this entry.protected static <Q> MethodGraph.Compiler.Default.Key.Store.Entry
<Q> MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.of
(MethodGraph.Compiler.Default.Key.Harmonized<Q> key, MethodDescription left, MethodDescription right, Visibility visibility) Creates a new ambiguous entry if both provided entries are not considered to be a bridge of one another.private static <V> MethodGraph.Compiler.Default.Key.Store.Entry
<V> MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.of
(MethodGraph.Compiler.Default.Key.Harmonized<V> key, MethodDescription override, MethodDescription original, Visibility visibility) Creates an entry for an override where a method overrides another method within a super class.Methods in net.bytebuddy.dynamic.scaffold with parameters of type MethodGraph.Compiler.Default.Key.Store.EntryModifier and TypeMethodDescriptionprivate static <W> MethodGraph.Compiler.Default.Key.Store.Entry
<W> MethodGraph.Compiler.Default.Key.Store.combine
(MethodGraph.Compiler.Default.Key.Store.Entry<W> left, MethodGraph.Compiler.Default.Key.Store.Entry<W> right) Combines the two given stores.MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<U> entry) Injects the given key into this entry.MethodGraph.Compiler.Default.Key.Store.Entry.Initial.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<U> entry) Injects the given key into this entry.MethodGraph.Compiler.Default.Key.Store.Entry.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<W> entry) Injects the given key into this entry.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.inject
(MethodGraph.Compiler.Default.Key.Store.Entry<U> entry) Injects the given key into this entry.Constructor parameters in net.bytebuddy.dynamic.scaffold with type arguments of type MethodGraph.Compiler.Default.Key.Store.EntryModifierConstructorDescriptionprivate
Store
(LinkedHashMap<MethodGraph.Compiler.Default.Key.Harmonized<V>, MethodGraph.Compiler.Default.Key.Store.Entry<V>> entries) Creates a new store representing the given entries.