Uses of Class
com.oopitis.weather.owm.OwmQueryHint.Language

Packages that use OwmQueryHint.Language
com.oopitis.weather.owm Implementation for Open Weather Map. 
 

Uses of OwmQueryHint.Language in com.oopitis.weather.owm
 

Methods in com.oopitis.weather.owm that return OwmQueryHint.Language
 OwmQueryHint.Language OwmQueryHint.getLanguage()
          Returns the language set in this hint.
static OwmQueryHint.Language OwmQueryHint.Language.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OwmQueryHint.Language[] OwmQueryHint.Language.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.oopitis.weather.owm with parameters of type OwmQueryHint.Language
protected abstract  WeatherReport OwmData.getCurrentConditions(GeoLocation loc, OwmQueryHint.Language lang)
          Gets the current weather conditions for a location.
protected abstract  java.util.List<WeatherReport> OwmData.getDailyConditions(GeoLocation loc, OwmQueryHint.Language lang, java.lang.Integer numOfDays)
          Gets daily weather conditions for a location.
protected abstract  java.util.List<WeatherReport> OwmData.getHourlyConditions(GeoLocation loc, OwmQueryHint.Language lang)
          Gets hourly weather conditions for a location.
protected abstract  java.util.List<WeatherReport> OwmData.getMultiLocationConditions(GeoLocation loc, OwmQueryHint.Language lang)
          Gets weather conditions for multiple locations.
protected  java.lang.String OwmData.getUrlCurrent(GeoLocation loc, OwmQueryHint.Language lang)
          Constructs a URL for retrieving the current weather data.
protected  java.lang.String OwmData.getUrlDaily(GeoLocation loc, OwmQueryHint.Language lang, java.lang.Integer numOfDays)
          Constructs a URL for retrieving daily weather data up to 14 days.
protected  java.lang.String OwmData.getUrlHourly(GeoLocation loc, OwmQueryHint.Language lang)
          Constructs a URL for retrieving hourly (actually every 3 hours) weather data.
protected  java.lang.String OwmData.getUrlMultiLocation(GeoLocation loc, OwmQueryHint.Language lang)
          Constructs a URL for retrieving weather data from multiple locations.
 void OwmQueryHint.setLanguage(OwmQueryHint.Language lang)
          Sets the language to be used in the query.