Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Conditionals using Optional

Is there a way to change the conditional statement using Optional library?

Optional<String> fruit = Optional.of("Apple");
fruit.isPresent() ? "Fruit Present" : "Fruit not present";

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

It is little bit weird since argument of map function is ignored, anyway it is equivalent to ?:.

fruit.map(currentElement -> "Fruit Present").orElse("Fruit not present")
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading