de.alpharogroup.address.book.service.api.ZipcodesService.findCityFromZipcode()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(99)

本文整理了Java中de.alpharogroup.address.book.service.api.ZipcodesService.findCityFromZipcode()方法的一些代码示例,展示了ZipcodesService.findCityFromZipcode()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipcodesService.findCityFromZipcode()方法的具体详情如下:
包路径:de.alpharogroup.address.book.service.api.ZipcodesService
类名称:ZipcodesService
方法名:findCityFromZipcode

ZipcodesService.findCityFromZipcode介绍

[英]Find the city from the given Countries object and zipcode.
[中]从给定的Countries对象和zipcode中查找城市。

代码示例

代码示例来源:origin: de.alpharogroup/address-book-domain

/**
 * {@inheritDoc}
 */
@Override
public Zipcode findCityFromZipcode(Country country, String zipcode)
{
  return getMapper().toDomainObject(zipcodesService
    .findCityFromZipcode(getMapper().map(country, Countries.class), zipcode));
}

代码示例来源:origin: de.alpharogroup/address-book-business

Zipcodes zipcode = getZipcodesService().findCityFromZipcode(country, zc);
if (zipcode != null)

代码示例来源:origin: de.alpharogroup/address-book-business

Zipcodes zipcode = getZipcodesService().findCityFromZipcode(country,
  modelObject.getZipcode());
if (zipcode != null)

相关文章