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 SummaryModifier and TypeMethodDescriptionvoidPerforms the customizations on the input argument.static <T> Customizer<T>Returns aCustomizerthat does not alter the input argument.
- 
Method Details- 
customizePerforms the customizations on the input argument.- Parameters:
- t- the input argument
 
- 
withDefaultsReturns aCustomizerthat does not alter the input argument.- Returns:
- a Customizerthat does not alter the input argument.
 
 
-