In Java 8 Use below code:-
Optional.ofNullable(listToBeAdded).ifPresent(listToBeAddedTo::addAll)
listToBeAdded – The list whose elements are to be added.
listToBeAddedTo – The list to which you are adding elements using addAll.
In Java 8 Use below code:-
Optional.ofNullable(listToBeAdded).ifPresent(listToBeAddedTo::addAll)
listToBeAdded – The list whose elements are to be added.
listToBeAddedTo – The list to which you are adding elements using addAll.