Uses of Interface
com.oopitis.weather.Queryable

Packages that use Queryable
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. 
 

Uses of Queryable in com.oopitis.weather
 

Classes in com.oopitis.weather that implement Queryable
 class WeatherProperty<T>
          An object of this class represents a piece of weather information.
 class WeatherPropertySet
          A set of weather properties.
 

Methods in com.oopitis.weather with parameters of type Queryable
 void QueryHint.include(Queryable... queryables)
          Indicates that a weather report must be included if any property in the given list of queryables is applicable to the report.
 java.util.List<R> WeatherService.query(L location, Queryable q, Feature f, Feature... ff)
          Queries the data source for a location about the weather information that includes the given queryable and list of features.
 java.util.List<R> WeatherService.query(L location, Queryable q, Queryable... others)
          Queries the data source for a location about the weather information that includes a list of queryables.
 java.util.List<R> WeatherService.query(L location, Queryable q, Queryable... others)
          Queries the data source for a location about the weather information that includes a list of queryables.