-
Returns a concatenated
Streamer whose elements are all the elements of
this
followed by the given
element.
Returns a concatenated
Streamer whose elements are all the elements of
this
followed by all the elements of the
other Streamer.
static <E,
F extends E,
G extends E>
Streamer<E>
Returns a concatenated
Streamer whose elements are all the elements of the
left argument
followed by all the elements of the
right argument.
Returns a
Streamer that contains a single given
element.
Streamer.of(E[] elements)
Returns a
Streamer backed by an array of
elements.
Streamer.of(E element0,
E element1,
E... more)
Returns a
Streamer that contains two or more given
elements.
Returns a
Streamer consisting of the elements of
this
but not the given
candidate.
Returns a
Streamer consisting of the elements of
this
that are not contained in the
other Streamer.
Returns a
Streamer consisting of the elements of
this
that are contained in the
other Streamer.