Examples
Getting a Land
final Optional<Land> landOptional = Territory.getLandWithin(location);
if (landOptional.isPresent()) {
Land land = landOptional.get();
}Last updated
final Optional<Land> landOptional = Territory.getLandWithin(location);
if (landOptional.isPresent()) {
Land land = landOptional.get();
}Last updated