Package net.bytebuddy.dynamic.scaffold
Interface TypeWriter.MethodPool
-
- All Known Subinterfaces:
MethodRegistry.Compiled
- All Known Implementing Classes:
MethodRegistry.Default.Compiled
- Enclosing interface:
- TypeWriter<T>
public static interface TypeWriter.MethodPool
An method pool that allows a lookup for how to implement a method.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
TypeWriter.MethodPool.Record
An entry of a method pool that describes how a method is implemented.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeWriter.MethodPool.Record
target(MethodDescription methodDescription)
Looks up a handler entry for a given method.
-
-
-
Method Detail
-
target
TypeWriter.MethodPool.Record target(MethodDescription methodDescription)
Looks up a handler entry for a given method.- Parameters:
methodDescription
- The method being processed.- Returns:
- A handler entry for the given method.
-
-