@return a sequential Stream of the matches in document order
()
| 300 | * @return a sequential {@link Stream} of the matches in document order |
| 301 | */ |
| 302 | public Stream<T> stream() { |
| 303 | return run(false).stream(); |
| 304 | } |
| 305 | |
| 306 | @SuppressWarnings("unchecked") |
| 307 | private List<T> run(final boolean shortCircuit) { |