Java 8 Merge 2 Коллекции.

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