Interface ClassTransform
- All Superinterfaces:
ClassFileTransformPREVIEW<ClassTransformPREVIEW,ClassElementPREVIEW, ClassBuilderPREVIEW>
- All Known Subinterfaces:
ClassRemapperPREVIEW
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public non-sealed interface ClassTransform
extends ClassFileTransformPREVIEW<ClassTransformPREVIEW,ClassElementPREVIEW,ClassBuilderPREVIEW>
ClassTransform is a preview API of the Java platform.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
A transformation on streams of
ClassElementPREVIEW.- Since:
- 22
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ClassTransformPREVIEWA class transform that sends all elements to the builder. -
Method Summary
Modifier and TypeMethodDescriptiondefault ClassTransformPREVIEWChain this transform with another; elements presented to the builder of this transform will become the input to the next transform.static ClassTransformPREVIEWdropping(Predicate<ClassElementPREVIEW> filter) Create a class transform that passes each element through to the builder, except for those that the suppliedPredicateis true for.static ClassTransformPREVIEWendHandler(Consumer<ClassBuilderPREVIEW> finisher) Create a class transform that passes each element through to the builder, and calls the specified function when transformation is complete.static ClassTransformPREVIEWofStateful(Supplier<ClassTransformPREVIEW> supplier) Create a stateful class transform from aSupplier.static ClassTransformPREVIEWCreate a class transform that transformsFieldModelPREVIEW elements with the supplied field transform.static ClassTransformPREVIEWCreate a class transform that transforms theCodeAttributePREVIEW (method body) ofMethodModelPREVIEW elements with the supplied code transform.static ClassTransformPREVIEWtransformingMethodBodies(Predicate<MethodModelPREVIEW> filter, CodeTransformPREVIEW xform) Create a class transform that transforms theCodeAttributePREVIEW (method body) ofMethodModelPREVIEW elements with the supplied code transform.static ClassTransformPREVIEWCreate a class transform that transformsMethodModelPREVIEW elements with the supplied method transform.static ClassTransformPREVIEWtransformingMethods(Predicate<MethodModelPREVIEW> filter, MethodTransformPREVIEW xform) Create a class transform that transformsMethodModelPREVIEW elements with the supplied method transform.Methods declared in interface java.lang.classfile.ClassFileTransformPREVIEW
accept, atEnd, atStart
-
Field Details
-
ACCEPT_ALL
A class transform that sends all elements to the builder.
-
-
Method Details
-
ofStateful
-
endHandler
Create a class transform that passes each element through to the builder, and calls the specified function when transformation is complete.- Parameters:
finisher- the function to call when transformation is complete- Returns:
- the class transform
-
dropping
Create a class transform that passes each element through to the builder, except for those that the suppliedPredicateis true for.- Parameters:
filter- the predicate that determines which elements to drop- Returns:
- the class transform
-
transformingMethods
static ClassTransformPREVIEW transformingMethods(Predicate<MethodModelPREVIEW> filter, MethodTransformPREVIEW xform) Create a class transform that transformsMethodModelPREVIEW elements with the supplied method transform.- Parameters:
filter- a predicate that determines which methods to transformxform- the method transform- Returns:
- the class transform
-
transformingMethods
Create a class transform that transformsMethodModelPREVIEW elements with the supplied method transform.- Parameters:
xform- the method transform- Returns:
- the class transform
-
transformingMethodBodies
static ClassTransformPREVIEW transformingMethodBodies(Predicate<MethodModelPREVIEW> filter, CodeTransformPREVIEW xform) Create a class transform that transforms theCodeAttributePREVIEW (method body) ofMethodModelPREVIEW elements with the supplied code transform.- Parameters:
filter- a predicate that determines which methods to transformxform- the code transform- Returns:
- the class transform
-
transformingMethodBodies
Create a class transform that transforms theCodeAttributePREVIEW (method body) ofMethodModelPREVIEW elements with the supplied code transform.- Parameters:
xform- the code transform- Returns:
- the class transform
-
transformingFields
Create a class transform that transformsFieldModelPREVIEW elements with the supplied field transform.- Parameters:
xform- the field transform- Returns:
- the class transform
-
andThen
Description copied from interface:ClassFileTransformChain this transform with another; elements presented to the builder of this transform will become the input to the next transform.- Specified by:
andThenin interfaceClassFileTransformPREVIEW<ClassTransformPREVIEW,ClassElementPREVIEW, ClassBuilderPREVIEW> - Implementation Requirements:
- The default implementation returns this class transform chained with another class transform from the argument. Chaining of two transforms requires to involve a chained builder serving as a target builder for this transform and also as a source of elements for the downstream transform.
- Parameters:
t- the downstream transform- Returns:
- the chained transform
-
ClassTransformwhen preview features are enabled.