| Modifier and Type | Method and Description |
|---|---|
static <T> java.util.stream.Stream<T> |
stream(Iterable<T>... iterables)
Create a
Stream over the elements of the iterables, in order. |
static <T> java.util.stream.Stream<T> |
stream(Iterator<T>... iterators)
Create a
Stream over the elements of the iterators, in order. |
static java.util.stream.Stream<org.vertexium.Element> |
stream(org.vertexium.query.Query... queries)
Create a
Stream containing the results of executing the queries, in order. |
public static java.util.stream.Stream<org.vertexium.Element> stream(org.vertexium.query.Query... queries)
Stream containing the results of executing the queries, in order. The results
are not loaded into memory first.@SafeVarargs public static <T> java.util.stream.Stream<T> stream(Iterable<T>... iterables)
Stream over the elements of the iterables, in order. A list of iterators
is first created from the iterables, and passed to stream(Iterator[]). The iterable elements are not
loaded into memory first.@SafeVarargs public static <T> java.util.stream.Stream<T> stream(Iterator<T>... iterators)
Stream over the elements of the iterators, in order. The iterator elements
are not loaded into memory first.Copyright © 2013–2017 V5 Analytics. All rights reserved.