Monday 28 August 2017

How to use match methods of Java 8 Stream | Java 8 streams tutorial | Streams in Java 8


Click here to watch in Youtube : 
https://www.youtube.com/watch?v=aDz9iqcYNG0&list=UUhwKlOVR041tngjerWxVccw

StreamMatchDemo.java
import java.util.Arrays;
import java.util.List;
import java.util.function.Predicate;

public class StreamMatchDemo
{
    public static void main(String[] args)
    {
        
        List<Integer> list = Arrays.asList(3, 5, 6);
        
        Predicate<Integer> p = num -> num % 2 == 0;

        /*
         * allMatch(): It returns true if all elements of stream
         * matches the given Predicate.
         */
        System.out.println("allMatch = " + list.stream().allMatch(p));

        /*
         * anyMatch(): It returns true if any element of stream
         * matches the given Predicate.
         */
        System.out.println("anyMatch = " + list.stream().anyMatch(p));

        /*
         * noneMatch(): It returns true if none of the elements of
         * stream matches the given Predicate.
         */
        System.out.println("noneMatch = " + list.stream().noneMatch(p));
    }
}
Output
allMatch = false
anyMatch = true
noneMatch = false

Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/StreamDemo_Ter_Op_match_modulus_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/StreamDemo_Ter_Op_match_modulus_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/07d37f967453de17efa70af5825dc03ae2d5a7c0/BasicJava/StreamDemo_Ter_Op_match_modulus_App/?at=master

See also:

  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • No comments:

    Post a Comment