Java 8 Gabungan 2 Koleksi.

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