-
-
Save tamboer/80be356cf189bfb67e0a0bf376e437ba to your computer and use it in GitHub Desktop.
Java lambda formating example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private Map<Integer, ? extends Address> getAddressIndex(Optional<SubjectData> currentSubjectData) { | |
return currentSubjectData | |
.map((SubjectData subjectData) -> | |
subjectData.getAddresses().stream() | |
.filter((Address address) -> address.getEsoId() != null) | |
.collect(toMap(Address::getEsoId, identity())) | |
).orElse(emptyMap()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment