// "Replace Optional presence condition with functional style expression" "true-preview" import java.util.*; public class Main { String val; public void testOptional(Optional str) { if (str.isPresent()) { this.val = str.get(); } else { this.val = ""; } System.out.println(val); } }