Currently we have to get a collection then convert it to a stream: ```java final List<String> list = reader.read("$.store.book.[*].title", List.class); final Stream<String> stream = list.stream(); ``` it would be convenient to be able to do this directly: ```java final Stream<String> stream = reader.read("$.store.book.[*].title", Stream.class); ```