Package net.bytebuddy.build
Interface Plugin.Factory
-
- All Known Implementing Classes:
CachedReturnPlugin
,HashCodeAndEqualsPlugin
,HashCodeAndEqualsPlugin.WithNonNullableFields
,Plugin.Factory.Simple
,Plugin.Factory.UsingReflection
,Plugin.NoOp
,ToStringPlugin
- Enclosing interface:
- Plugin
public static interface Plugin.Factory
A factory for providing a build plugin.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Plugin.Factory.Simple
A simple factory that returns a preconstructed plugin instance..static class
Plugin.Factory.UsingReflection
A plugin factory that uses reflection for instantiating a plugin.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Plugin
make()
Returns a plugin that can be used for a transformation and which is subsequently closed.
-
-
-
Method Detail
-
make
Plugin make()
Returns a plugin that can be used for a transformation and which is subsequently closed.- Returns:
- The plugin to use for type transformations.
-
-