Skip to content
Advertisement

How to use Map and FlatMap – Java 8 [closed]

How can I use map and flatMap in my example?

I have a class UserProfile that looks like this:

JavaScript

From UserProfile class I should access AffordabilityCheck class that looks like this:

JavaScript

From AffordabilityCheck class I should get riskGroup which is an enum and looks like this:

JavaScript

And return it as String variable

I tried something like this:

JavaScript

But I get error:

JavaScript

How can I do this with map and flatMap?

Advertisement

Answer

Since your code compiles, I would guess that you start with an Optional of UserProfile. Something like this should work:

JavaScript

The reason you get this error is that you did not “unpack” the value froma an Optional, and tried to save the riskGroup variable as an Optional of String. You should check the orElse, orElseGet, get and getOrElseThrow methods. Please keep in mind that using Optional#get may end up throwing an NoSuchElementException if the Optional is empty…

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