- All Superinterfaces:
ClassfileTransform<MethodTransform,MethodElement, MethodBuilder>
- All Known Implementing Classes:
TransformImpl.ChainedMethodTransform,TransformImpl.MethodCodeTransform,TransformImpl.SupplierMethodTransform
- 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 MethodTransform
extends ClassfileTransform<MethodTransform,MethodElement,MethodBuilder>
A transformation on streams of
MethodElement.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.glavo.classfile.ClassfileTransform
ClassfileTransform.ResolvedTransform<E extends ClassfileElement> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final MethodTransformA method transform that sends all elements to the builder. -
Method Summary
Modifier and TypeMethodDescriptiondefault MethodTransformChain this transform with another; elements presented to the builder of this transform will become the input to the next transform.static MethodTransformdropping(Predicate<MethodElement> filter) Create a method transform that passes each element through to the builder, except for those that the suppliedPredicateis true for.static MethodTransformendHandler(Consumer<MethodBuilder> finisher) Create a method transform that passes each element through to the builder, and calls the specified function when transformation is complete.static MethodTransformofStateful(Supplier<MethodTransform> supplier) Create a stateful method transform from aSupplier.resolve(MethodBuilder builder) Bind a transform to a builder.static MethodTransformtransformingCode(CodeTransform xform) Create a method transform that transformsCodeModelelements with the supplied code transform.Methods inherited from interface org.glavo.classfile.ClassfileTransform
accept, atEnd, atStart
-
Field Details
-
ACCEPT_ALL
A method transform that sends all elements to the builder.
-
-
Method Details
-
ofStateful
Create a stateful method transform from aSupplier. The supplier will be invoked for each transformation.- Parameters:
supplier- aSupplierthat produces a fresh transform object for each traversal- Returns:
- the stateful method transform
-
endHandler
Create a method 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 method transform
-
dropping
Create a method 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 method transform
-
transformingCode
Create a method transform that transformsCodeModelelements with the supplied code transform.- Parameters:
xform- the method transform- Returns:
- the class transform
-
resolve
Description copied from interface:ClassfileTransformBind a transform to a builder. If the transform is chained, intermediate builders are created for each chain link. If the transform is stateful (see, e.g.,ClassTransform.ofStateful(Supplier)), the supplier is invoked to get a fresh transform object.This method is a low-level method that should rarely be used by user code; most of the time, user code should prefer
ClassfileBuilder.transform(CompoundElement, ClassfileTransform), which resolves the transform and executes it on the current builder.- Specified by:
resolvein interfaceClassfileTransform<MethodTransform,MethodElement, MethodBuilder> - Parameters:
builder- the builder to bind to- Returns:
- the bound result
-
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 interfaceClassfileTransform<MethodTransform,MethodElement, MethodBuilder> - Parameters:
t- the downstream transform- Returns:
- the chained transform
-