See entire Stack Overflow Topic: Easy way to convert Iterable to Collection
//...
public static <T> List<T> convertToList(final Iterable<T> iterable) {
return StreamSupport.stream(iterable.spliterator(), false)
.collect(Collectors.toList());
}
//...