T
- the type of the input to the operation@FunctionalInterface
public interface Customizer<T>
Modifier and Type | Method and Description |
---|---|
void |
customize(T t)
Performs the customizations on the input argument.
|
static <T> Customizer<T> |
withDefaults()
Returns a
Customizer that does not alter the input argument. |
void customize(T t)
t
- the input argumentstatic <T> Customizer<T> withDefaults()
Customizer
that does not alter the input argument.Customizer
that does not alter the input argument.