Java 8 verschmelzen 2 Sammlungen.

Stream<String> combinedStream = Stream.concat(
  collectionA.stream(),
  collectionB.stream());
Cooperative Coyote