Uses of Class
com.oopitis.weather.QueryHint

Packages that use QueryHint
com.oopitis.weather This package provides a common interface for users to access weather information from different data sources, and a skeletal implementation for data providers to quickly set up data access via Java. 
com.oopitis.weather.fio Implementation for forecast.io. 
com.oopitis.weather.owm Implementation for Open Weather Map. 
 

Uses of QueryHint in com.oopitis.weather
 

Classes in com.oopitis.weather with type parameters of type QueryHint
 class WeatherService<L extends GeoLocation,Q extends QueryHint,R extends WeatherReport>
          A service that reports weather conditions for a location based on a query hint.
 

Uses of QueryHint in com.oopitis.weather.fio
 

Methods in com.oopitis.weather.fio that return QueryHint
 QueryHint FioWeather.newQueryHint()
           
 

Methods in com.oopitis.weather.fio with parameters of type QueryHint
 java.util.List<WeatherReport> FioWeather.query(GeoLocation location, java.util.Date beginTime, QueryHint hint)
           
 

Uses of QueryHint in com.oopitis.weather.owm
 

Subclasses of QueryHint in com.oopitis.weather.owm
 class OwmQueryHint
          A query hint for Open Weather Map.