Uses of Class
com.oopitis.weather.WeatherReport

Packages that use WeatherReport
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 WeatherReport in com.oopitis.weather
 

Classes in com.oopitis.weather with type parameters of type WeatherReport
 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.
 

Methods in com.oopitis.weather with type parameters of type WeatherReport
static
<T extends WeatherReport>
java.util.List<T>
WeatherService.subList(java.util.List<T> list, java.util.Date beginDate, java.util.Date endDate)
          Extracts the list of weather reports between two dates.
static
<T extends WeatherReport>
java.util.List<T>
WeatherService.subList(java.util.List<T> list, Feature f)
          Extracts the list of weather reports that belong to a feature.
 

Method parameters in com.oopitis.weather with type arguments of type WeatherReport
static java.util.List<Feature> WeatherService.listFeatures(java.util.List<? extends WeatherReport> list)
          Lists all features referenced by a list of weather reports.
 

Uses of WeatherReport in com.oopitis.weather.fio
 

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

Uses of WeatherReport in com.oopitis.weather.owm
 

Methods in com.oopitis.weather.owm that return WeatherReport
protected abstract  WeatherReport OwmData.getCurrentConditions(GeoLocation loc, OwmQueryHint.Language lang)
          Gets the current weather conditions for a location.
 

Methods in com.oopitis.weather.owm that return types with arguments of type WeatherReport
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.
 java.util.List<WeatherReport> OwmWeather.query(GeoLocation location, java.util.Date beginTime, OwmQueryHint hint)
          Queries the data source about the weather in a location.