Friday, October 3, 2025
HomeLanguagesJavaStream of() method in Java

Stream of() method in Java

Stream of(T t)

Stream of(T t) returns a sequential Stream containing a single element.
Syntax :

static Stream of(T t)

Parameters: This method accepts a mandatory parameter t which is the single element in the Stream.

Return Value: Stream of(T t) returns a sequential Stream containing the single specified element.

Example :




// Java code for Stream of(T t)
// to get a sequential Stream
// containing a single element.
  
import java.util.*;
import java.util.stream.Stream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an Stream having single element only
        Stream stream = Stream.of("Geeks");
  
        // Displaying the Stream having single element
        stream.forEach(System.out::println);
    }
}


Output:

Geeks

Stream of(T… values)

Stream of(T… values) returns a sequential ordered stream whose elements are the specified values.

Syntax :

static Stream of(T... values)

Parameters: This method accepts a mandatory parameter values which are the elements of the new stream.

Return Value : Stream of(T… values) returns a sequential ordered stream whose elements are the specified values.

Example:




// Java code for Stream of(T... values)
// to get a sequential ordered stream whose
// elements are the specified values.
  
import java.util.*;
import java.util.stream.Stream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an Stream
        Stream stream = Stream.of("Geeks", "for", "Geeks");
  
        // Displaying the sequential ordered stream
        stream.forEach(System.out::println);
    }
}


Output:

Geeks
for
Geeks
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32332 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11868 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11929 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS