-
- All Known Implementing Classes:
DefaultInternalObjectFilter
- 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 interface MethodHandleTransformer
A generic interface describing operations that transform method handles. Typical usage is for implementinginternal objects filters
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MethodHandle
transform(MethodHandle target)
Transforms a method handle.
-
-
-
Method Detail
transform
MethodHandle transform(MethodHandle target)
Transforms a method handle.- Parameters:
target
- the method handle being transformed.- Returns:
- transformed method handle.
-