Your WeatherRepository method getWeather(city) should return just String. And fetchWeatherDate(city) method should look like:
public void fetchWeatherData(String city) {
String weatherString = repository.getWeather(city);
weatherResult.setValue(weatherString);
}