Uses of Class
com.oopitis.weather.WeatherPropertySet

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

Fields in com.oopitis.weather declared as WeatherPropertySet
static WeatherPropertySet WeatherService.Alert
          Weather alert related properties.
static WeatherPropertySet WeatherService.Astronomy
          Astronomy related properties.
static WeatherPropertySet WeatherService.Precipitation
          Precipitation related properties.
static WeatherPropertySet WeatherService.Temperature
          Temperature related properties.
static WeatherPropertySet WeatherService.Wind
          Wind related properties.
 

Methods in com.oopitis.weather that return WeatherPropertySet
abstract  WeatherPropertySet WeatherService.getApplicableProperties(Feature f)
          Gets the set of properties applicable to a feature.
 WeatherPropertySet Feature.getProperties(WeatherService service)
          Gets the list of properties associated with this feature.
 

Methods in com.oopitis.weather with parameters of type WeatherPropertySet
 java.util.Map<WeatherProperty,java.lang.Object> WeatherReport.get(WeatherPropertySet set)
          Gets the data for a set of weather properties.
 

Constructors in com.oopitis.weather with parameters of type WeatherPropertySet
WeatherPropertySet(WeatherPropertySet base, WeatherProperty property, WeatherProperty... properties)
          Creates a weather property set based on another set.
 

Uses of WeatherPropertySet in com.oopitis.weather.fio
 

Methods in com.oopitis.weather.fio that return WeatherPropertySet
 WeatherPropertySet FioData.getApplicableProperties(Feature f)
          Returns the set of applicable properties for a feature.
 WeatherPropertySet FioWeather.getApplicableProperties(Feature f)
           
 

Uses of WeatherPropertySet in com.oopitis.weather.owm
 

Fields in com.oopitis.weather.owm declared as WeatherPropertySet
static WeatherPropertySet OwmWeather.DailyTemperature
          A property set that contains the following properties: TempMorningCelsius TempDayCelsius TempEveningCelsius TempNightCelsius
 

Methods in com.oopitis.weather.owm that return WeatherPropertySet
 WeatherPropertySet OwmData.getApplicableProperties(Feature f)
          Returns the applicable properties associated with a feature.
 WeatherPropertySet OwmWeather.getApplicableProperties(Feature f)