com.oopitis.weather.fio
Interface FioData.Response

All Superinterfaces:
FioData.DataPoint, WeatherPropertyMap
Enclosing class:
FioData<T>

public static interface FioData.Response
extends FioData.DataPoint

The full forecast.io response. Any getter may return null if no data is available.


Method Summary
 java.util.List<FioData.DataPoint> getAlerts()
          Gets the alerts block.
 FioData.DataPoint getCurrently()
          Gets the currently block.
 FioData.DataBlock getDaily()
          Gets the daily block.
 FioData.DataPoint getFlags()
          Gets the flags block.
 FioData.DataBlock getHourly()
          Gets the hourly block.
 FioData.DataBlock getMinutely()
          Gets the minutely block.
 
Methods inherited from interface com.oopitis.weather.fio.FioData.DataPoint
get, getProperty, getStandardDeviation
 

Method Detail

getCurrently

FioData.DataPoint getCurrently()
Gets the currently block.

Returns:
the currently block.

getMinutely

FioData.DataBlock getMinutely()
Gets the minutely block.

Returns:
the minutely block.

getHourly

FioData.DataBlock getHourly()
Gets the hourly block.

Returns:
the hourly block.

getDaily

FioData.DataBlock getDaily()
Gets the daily block.

Returns:
the daily block.

getFlags

FioData.DataPoint getFlags()
Gets the flags block.

Returns:
the flags block.

getAlerts

java.util.List<FioData.DataPoint> getAlerts()
Gets the alerts block.

Returns:
the alerts block.