Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Created March 14, 2020 03:25
Show Gist options
  • Save ashkrit/b9cf8b743b1c8b2731817501732fb115 to your computer and use it in GitHub Desktop.
Save ashkrit/b9cf8b743b1c8b2731817501732fb115 to your computer and use it in GitHub Desktop.
//Nested Property
if (p.getHome() != null) {
System.out.println("Sending Postal mail " + p.getHome().address);
}
if (p.getHome() != null && p.getHome().getInsurance() != null) {
System.out.println("Sending Notification to insurance " + p.getHome().getInsurance().getAgency());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment