public static final class LongStreams.J8Builder extends Object
LongStream.Builder
interface.Modifier and Type | Method and Description |
---|---|
static LongStream.Builder |
add(LongStream.Builder this_,
long t)
Adds an element to the stream being built.
|
public static LongStream.Builder add(LongStream.Builder this_, long t)
Implementation Requirements:
The default implementation behaves as if:
accept(t)
return this;
this_
- the Builder used to build the streamt
- the element to addthis
builderIllegalStateException
- if the builder has already transitioned
to the built stateCopyright © 2015. All rights reserved.