IntStream.Builder add(int t) is used to insert an element into the element in the building phase of stream. It adds an element to the stream being built.
Syntax:
default IntStream.Builder add(int t)
Parameters: This method accepts a mandatory parameter
t which is the element to input into the stream.
Exceptions: This method throws
IllegalStateException: when the builder has already transitioned to the built state. It means that the stream has entered the built phase and now no it can't be changed. Hence no more elements can be added into the stream.
Below are the examples to illustrate add() method:
Example 1:
Output:
Stream successfully built
4
5
6
7
Example 2: To illustrate IllegalStateException