Skip to content
Advertisement

How to get value from an optional object in another optional?

Basically,I need to get a size of optional list in an optional object. Something like:

JavaScript

The code doesn’t look nice. What’s the elegant way to get it? With ifPresent().orElse()? Thanks in advance!

Advertisement

Answer

Consecutive map (or flatMap, in case something returns an Optional) operations, and a final orElse:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement