Java 8 Fusiter 2 Collections.
Stream<String> combinedStream = Stream.concat(
collectionA.stream(),
collectionB.stream());
Cooperative Coyote
Stream<String> combinedStream = Stream.concat(
collectionA.stream(),
collectionB.stream());