-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPredicateExample.java
39 lines (28 loc) · 1013 Bytes
/
PredicateExample.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.learn.functionalInterfaces;
import java.util.function.Predicate;
public class PredicateExample {
/**
* Predicate accepting Integer and
* Check Whether Passed integer is Even or not.
*/
static Predicate<Integer> evenNumberPredicate = (num) -> num % 2 == 0;
static Predicate<Integer> predicate1 = (num) -> num % 5 == 0;
public static void main(String[] args) {
System.out.println(evenNumberPredicate.test(10));
predicateWithAnd();
predicateWithOr();
predicateWithNegate();
}
public static void predicateWithAnd() {
System.out.println(evenNumberPredicate.and(predicate1).test(10));
}
public static void predicateWithOr() {
System.out.println(evenNumberPredicate.or(predicate1).test(12));
}
public static void predicateWithNegate() {
/**
* negate() -> reverse the result of the Predicate
*/
System.out.println(evenNumberPredicate.negate().test(9));
}
}