5657585960616263646566
} public List<Recipe> getNestedRecipes() { Object object = getReference(); if (object instanceof Recipe) { Recipe recipe = (Recipe) object; return Collections.singletonList(recipe); } else { return Collections.emptyList(); } }