Lesson 12 - StreamAPI in Java - Modifying stream methods
In the previous lesson, StreamAPI in Java - Generating streams, we looked at ways to create general and numeric streams. In today's Java tutorial, we're going to learn about another methods, that modify streams.
Stream modification methods
Modification methods apply some rules to an existing stream and create a new one.
The filter() Method
The method's signature is as follows:
filter(Predicate<? super T> predicate)
As the name suggests, the method creates a new stream of elements that match specified criteria. Let's show the usage on an example:
{JAVA_OOP}
import java.util.stream.Stream;
{JAVA_MAIN_BLOCK}
Stream
.of("Peter", "Michael", "Carl", "John", "Martin", "Jack")
.filter(name -> name.startsWith("J"))
.forEach(System.out::println);
{/JAVA_MAIN_BLOCK}
{/JAVA_OOP}
The result is all the names starting with the letter "J":
Console application
John
Jack
The distinct() Method
Let's start with the method signature again:
distinct()
The method creates a stream of unique values from the original stream. To achieve the uniqueness, the values are compared internally using the
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this Java tutorial, we'll learn about StreamAPI methods that modify existing streams and create new ones.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.