Package net.bytebuddy.dynamic.scaffold
Interface TypeWriter.FieldPool
-
- All Known Subinterfaces:
FieldRegistry.Compiled
- All Known Implementing Classes:
FieldRegistry.Compiled.NoOp
,FieldRegistry.Default.Compiled
,TypeWriter.FieldPool.Disabled
- Enclosing interface:
- TypeWriter<T>
public static interface TypeWriter.FieldPool
An field pool that allows a lookup for how to implement a field.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
TypeWriter.FieldPool.Disabled
A field pool that does not allow any look ups.static interface
TypeWriter.FieldPool.Record
An entry of a field pool that describes how a field is implemented.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeWriter.FieldPool.Record
target(FieldDescription fieldDescription)
Looks up a handler entry for a given field.
-
-
-
Method Detail
-
target
TypeWriter.FieldPool.Record target(FieldDescription fieldDescription)
Looks up a handler entry for a given field.- Parameters:
fieldDescription
- The field being processed.- Returns:
- A handler entry for the given field.
-
-