Skip to content

Instantly share code, notes, and snippets.

@jmbataller
Created December 6, 2015 00:04
Show Gist options
  • Save jmbataller/1f01a2a68bfbdee4453c to your computer and use it in GitHub Desktop.
Save jmbataller/1f01a2a68bfbdee4453c to your computer and use it in GitHub Desktop.
safe navigator in java 8
public String getCarInsuranceName(Optional<Person> person) {
return person.flatMap(Person::getCar)
.flatMap(Car::getInsurance)
.map(Insurance::getName)
.orElse("Unknown");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment