The Java Stream
API has many useful methods. If we want to transform a Stream
to a Java array we can use the toArray
method. Without an argument the result is an object array (Object[]
), but we can also use an argument to return an array of another type. The easiest way is to use the contructor of the array type we want as method reference. Then the result is an array of the given type with the elements of the stream.
This is very useful if we have a Java Stream
and want to use the elements to invoke a method with a variable arguments parameter. In Java we can pass an array object as variable arguments argument to a method. So if we transform the Stream
to an array we can invoke the method with that value.
Continue reading →
Using the Stream API and the map
method we can transform elements in a stream to another object. Instead of using the map
method we can also write a custom Collector
and transform the elements when we use the collect
method as terminal operation of the stream.
First we have an example where we transform String values using the map
method:
Continue reading →
In Java we can use a Predicate
to test if something is true
or false
. This is especially useful when we use the filter
method of the Java Stream API. We can use lambda expressions to define our Predicate
or implement the Predicate
interface. If we want to combine different Predicate
objects we can use the or
, and
and negate
methods of the Predicate
interfaces. These are default methods of the interface and will return a new Predicate
.
Let’s start with an example where we have a list of String
values. We want to filter all values that start with Gr or with M. In our first implementation we use a lambda expression as Predicate
and implements both tests in this expression:
Continue reading →