Java 8 menggabungkan beberapa koleksi.

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