This method first will check whether our Optional object is empty or not? If not empty, convert its value to another value. Similar to the filter() method, this method returns an Optional object with a value after conversion.
For example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
package com.huongdanjava.javaexample; import java.util.Optional; public class Example { public static void main(String[] args) { String s = new String("Khanh"); Optional<String> opt = Optional.ofNullable(s); opt.map(x -> x.toLowerCase()) .filter(x -> x.contains("k")) .ifPresent(x -> System.out.println("Name: " + x)); } } |
In the above example, we used the map() method to convert the value of the Optional object to lowercase, then check whether its value contains the letter “k”. If so, print out that value.
You can see more about the filter() method and ifPresent() method of the Optional object to understand more about the example.
Result: