Package org.hawaiiframework.converter
Interface NullListConversionStrategy<T>
-
- Type Parameters:
T
- The type of the list element that should be returned.
- 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 NullListConversionStrategy<T>
Strategy how to handlenull
values in lists to be converted.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<T>
apply()
Applies the strategy and returns the list.
-