A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/stream-of-method-in-java/ below:

Stream of() method in Java

Stream of() method in Java

Last Updated : 08 Oct, 2018

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
// 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);
    }
}
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
// 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);
    }
}


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4