This repository was archived by the owner on Feb 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathPredefinedInterfacesExamples.java
64 lines (50 loc) · 2.3 KB
/
PredefinedInterfacesExamples.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.bobocode;
import com.bobocode.data.Accounts;
import com.bobocode.model.Account;
import java.util.concurrent.ThreadLocalRandom;
import java.util.function.*;
import java.util.stream.IntStream;
/**
* A list of predefined interfaces examples.
*/
public class PredefinedInterfacesExamples {
public static void main(String[] args) {
printEmailUsingAccountConsumer();
printARandomNumberUsingIntegerSupplier();
calculate3xValueUsingIntegerFunction();
checkIfNumberIsPositiveUsingIntegerPredicate();
verifyGoogleEmailUsingAccountPredicate();
printPrimeNumbersUsingIntegerPredicate();
}
private static void printARandomNumberUsingIntegerSupplier() {
IntSupplier integerSupplier = () -> ThreadLocalRandom.current().nextInt(1000);
System.out.println("\nNext random value: " + integerSupplier.getAsInt());
}
private static void printEmailUsingAccountConsumer() {
Consumer<Account> accountConsumer = acc -> System.out.println("\nAccount email: " + acc.getEmail());
Account account = Accounts.getAccount();
accountConsumer.accept(account);
}
private static void calculate3xValueUsingIntegerFunction() {
IntUnaryOperator tripleFunction = n -> 3 * n;
int a = 12;
System.out.println("\n3 * " + a + " = " + tripleFunction.applyAsInt(a));
}
private static void checkIfNumberIsPositiveUsingIntegerPredicate() {
IntPredicate isPositive = n -> n > 0;
int b = ThreadLocalRandom.current().nextInt();
System.out.println("\n" + b + " is " + (isPositive.test(b) ? "positive" : "negative"));
}
private static void verifyGoogleEmailUsingAccountPredicate() {
Account account = Accounts.getAccount();
Predicate<Account> isGmailUser = a -> a.getEmail().endsWith("@gmail.com");
System.out.println("\n" + account.getEmail() + " is "
+ (isGmailUser.test(account) ? "" : "not") + " a Google email.");
}
private static void printPrimeNumbersUsingIntegerPredicate() {
IntPredicate isPrime = n -> IntStream.range(2, n).noneMatch(i -> n % i == 0);
System.out.println();
IntStream.rangeClosed(1, 25)
.forEach(i -> System.out.printf("%3d %10s\n", i, (isPrime.test(i) ? " is prime" : "")));
}
}