47484950515253
* @return the first city for the given postal code */ @NotNull public City getCity( @NotNull @NonNls String postalCode ) { String cityName = getCityNames( postalCode ).iterator().next(); return new City( postalCode, cityName ); }
78798081828384
* @return the first city for the given postal code */ @Nonnull public City getCity( @Nonnull String postalCode ) { String cityName = getCityNames( postalCode ).iterator().next(); return new City( postalCode, cityName ); }