Open
Description
Currently we have to get a collection then convert it to a stream:
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:
final Stream<String> stream = reader.read("$.store.book.[*].title", Stream.class);
Metadata
Metadata
Assignees
Labels
No labels