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