Interface Customizer<T>
- Type Parameters:
T
- the type of the input to the operation
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback interface that accepts a single input argument and returns no result.
- Since:
- 5.2
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Performs the customizations on the input argument.static <T> Customizer<T>
Returns aCustomizer
that does not alter the input argument.
-
Method Details
-
customize
Performs the customizations on the input argument.- Parameters:
t
- the input argument
-
withDefaults
Returns aCustomizer
that does not alter the input argument.- Returns:
- a
Customizer
that does not alter the input argument.
-