convertIterable<SOURCE, TARGET> abstract method

Iterable<TARGET> convertIterable<SOURCE, TARGET>(
  1. Iterable<SOURCE?> model
)

For iterable items, converts from SOURCE to TARGET if such mapping is configured, into Iterable.

When an item in the source iterable is null, uses whenSourceIsNull if defined or throws an exception.

Implementation

Iterable<TARGET> convertIterable<SOURCE, TARGET>(Iterable<SOURCE?> model);