Uses of Class
net.bytebuddy.dynamic.scaffold.MethodGraph.Compiler.Default.Key.Harmonized
Packages that use MethodGraph.Compiler.Default.Key.Harmonized
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.Harmonized in net.bytebuddy.dynamic.scaffold
Fields in net.bytebuddy.dynamic.scaffold declared as MethodGraph.Compiler.Default.Key.HarmonizedModifier and TypeFieldDescriptionprivate final MethodGraph.Compiler.Default.Key.Harmonized<U>
MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.key
The harmonized key this entry represents.private final MethodGraph.Compiler.Default.Key.Harmonized<U>
MethodGraph.Compiler.Default.Key.Store.Entry.Initial.key
The harmonized key this entry represents.private final MethodGraph.Compiler.Default.Key.Harmonized<U>
MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.key
The harmonized key this entry represents.Fields in net.bytebuddy.dynamic.scaffold with type parameters of type MethodGraph.Compiler.Default.Key.HarmonizedModifier 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.HarmonizedModifier and TypeMethodDescriptionprotected MethodGraph.Compiler.Default.Key.Harmonized<V>
MethodGraph.Compiler.Default.Key.Harmonized.combineWith
(MethodGraph.Compiler.Default.Key.Harmonized<V> key) Combines this key with the given key.protected MethodGraph.Compiler.Default.Key.Harmonized<V>
MethodGraph.Compiler.Default.Key.Harmonized.extend
(MethodDescription.InDefinedShape methodDescription, MethodGraph.Compiler.Default.Harmonizer<V> harmonizer) Extends this key by the given method description.MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.getKey()
Returns the harmonized key of this entry.MethodGraph.Compiler.Default.Key.Store.Entry.getKey()
Returns the harmonized key of this entry.MethodGraph.Compiler.Default.Key.Store.Entry.Initial.getKey()
Returns the harmonized key of this entry.MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.getKey()
Returns the harmonized key of this entry.protected static <Q> MethodGraph.Compiler.Default.Key.Harmonized<Q>
MethodGraph.Compiler.Default.Key.Harmonized.of
(MethodDescription methodDescription, MethodGraph.Compiler.Default.Harmonizer<Q> harmonizer) Creates a new harmonized key for the given method description.Methods in net.bytebuddy.dynamic.scaffold with parameters of type MethodGraph.Compiler.Default.Key.HarmonizedModifier and TypeMethodDescriptionprotected MethodGraph.Compiler.Default.Key.Harmonized<V>
MethodGraph.Compiler.Default.Key.Harmonized.combineWith
(MethodGraph.Compiler.Default.Key.Harmonized<V> key) Combines this key with the given key.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.Constructors in net.bytebuddy.dynamic.scaffold with parameters of type MethodGraph.Compiler.Default.Key.HarmonizedModifierConstructorDescriptionprotected
Ambiguous
(MethodGraph.Compiler.Default.Key.Harmonized<U> key, LinkedHashSet<MethodDescription> methodDescriptions, Visibility visibility) Creates a new ambiguous entry.protected
Creates a new initial key.protected
Resolved
(MethodGraph.Compiler.Default.Key.Harmonized<U> key, MethodDescription methodDescription, Visibility visibility) Creates a new resolved entry that is not made visible.protected
Resolved
(MethodGraph.Compiler.Default.Key.Harmonized<U> key, MethodDescription methodDescription, Visibility visibility, boolean madeVisible) Creates a new resolved entry.Constructor parameters in net.bytebuddy.dynamic.scaffold with type arguments of type MethodGraph.Compiler.Default.Key.HarmonizedModifierConstructorDescriptionprivate
Store
(LinkedHashMap<MethodGraph.Compiler.Default.Key.Harmonized<V>, MethodGraph.Compiler.Default.Key.Store.Entry<V>> entries) Creates a new store representing the given entries.