-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOptionalOfEmptyNullableExample.java
55 lines (43 loc) · 1.63 KB
/
OptionalOfEmptyNullableExample.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
package com.learn.optional;
import java.util.Optional;
public class OptionalOfEmptyNullableExample {
public static void main(String[] args) {
System.out.println("Optional.ofNullable() : " + ofNullableExample());
System.out.println("Optional.ofNullable() : " + ofNullableExample().get()); // to get actual value stored inside optional.
System.out.println("Optional.of() :" + ofExample());
System.out.println("Optional.empty() : " + emptyExample());
}
/**
* <p>
* if we are not certain the value is going to be valid String all the time,
* then we would use <code>Optional.ofNullable()</code>
* </p>
* @return
*/
public static Optional<String> ofNullableExample() {
// "java" string is wrapped inside this Optional
Optional<String> stringOptional = Optional.ofNullable("java");
// if we pass value as null, then it returns Optional.empty();
return stringOptional;
}
/**
* <p>
* <code>of()</code>, always expects us to send valid value as input. otherwise,
* @throws NullPointerException if value is {@code null}
* </p>
* @return
*/
public static Optional<String> ofExample() {
Optional<String> stringOptional = Optional.of("java");
// if we pass values as null, then it throws Null Pointer Exception.
return stringOptional;
}
/**
* Returns an empty {@code Optional} instance of type T. No value is present for this
* {@code Optional}.
* @return
*/
public static Optional<String> emptyExample() {
return Optional.empty();
}
}