if (address != null)
city = city != null ? city + " " + address : address;
String name = trim(poi.getName());
if (name != null)
city = city != null ? city + " " + name : name;
Description description = poi.getDescription();
if (description != null) {
String descriptionStr = trim(description.toString());
if (descriptionStr != null)
city = city != null ? city + " " + descriptionStr : descriptionStr;
}
return city;
}