Package net.bytebuddy.agent.builder
Interface ResettableClassFileTransformer.WithDelegation.Substitutable.Factory
-
- All Known Implementing Classes:
ResettableClassFileTransformer.WithDelegation.Substitutable.Factory.ForJava9CapableVm
,ResettableClassFileTransformer.WithDelegation.Substitutable.Factory.ForLegacyVm
- Enclosing class:
- ResettableClassFileTransformer.WithDelegation.Substitutable
static interface ResettableClassFileTransformer.WithDelegation.Substitutable.Factory
A factory for creating a subclass ofResettableClassFileTransformer.WithDelegation.Substitutable
that supports the module system, if available.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ResettableClassFileTransformer.WithDelegation.Substitutable.Factory.CreationAction
An action to create a suitable factory.static class
ResettableClassFileTransformer.WithDelegation.Substitutable.Factory.ForJava9CapableVm
A factory for creating a substitutable class file transformer when the module system is supported.static class
ResettableClassFileTransformer.WithDelegation.Substitutable.Factory.ForLegacyVm
A factory for a substitutable class file transformer when the module system is not supported.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResettableClassFileTransformer.Substitutable
make(ResettableClassFileTransformer classFileTransformer)
Creates a new substitutable class file transformer.
-
-
-
Method Detail
-
make
ResettableClassFileTransformer.Substitutable make(ResettableClassFileTransformer classFileTransformer)
Creates a new substitutable class file transformer.- Parameters:
classFileTransformer
- The class file transformer to wrap.- Returns:
- The wrapping class file transformer.
-
-