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.FieldPoolAn field pool that allows a lookup for how to implement a field.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTypeWriter.FieldPool.DisabledA field pool that does not allow any look ups.static interfaceTypeWriter.FieldPool.RecordAn 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.Recordtarget(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.
-
-