WIMM Labs


com.wimm.framework.provider
Interface Weather.Columns

Enclosing class:
Weather

public static interface Weather.Columns

Columns for the Weather table.

Since:
WIMM SDK 1.0.0
See Also:
Weather

Field Summary
static String CITY_UID
           The the unique UID of the city for which the weather is being fetched.
static String DATE
          The date of the weather forecast.
static String DAY_CONDITION
          The day time (after sunrise, before sunset) weather conditions code for the city.
static String DAY_TEXT
          The day time (after sunrise, before sunset) conditions descriptions.
static String LATITUDE
          The latitude of the city for which the weather is being fetched.
static String LONGITUDE
          The longitude of the city for which the weather is being fetched.
static String NAME
          The name of the city for which the weather is being fetched.
static String NIGHT_CONDITION
          The night time (after sunset, before sunrise) weather conditions code for the city.
static String NIGHT_TEXT
          The night time (after sunset, before sunrise) conditions descriptions.
static String TEMP_HIGH
          The forecasted high temperature.
static String TEMP_LOW
          The the forecasted low temperature.
static String TIMEZONE
          The time zone associated with the city for which the weather is being fetched.
 

Field Detail

CITY_UID

static final String CITY_UID

The the unique UID of the city for which the weather is being fetched.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

NAME

static final String NAME
The name of the city for which the weather is being fetched.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

TIMEZONE

static final String TIMEZONE
The time zone associated with the city for which the weather is being fetched.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

LATITUDE

static final String LATITUDE
The latitude of the city for which the weather is being fetched.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

LONGITUDE

static final String LONGITUDE
The longitude of the city for which the weather is being fetched.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

NIGHT_CONDITION

static final String NIGHT_CONDITION
The night time (after sunset, before sunrise) weather conditions code for the city. This is reserved for system use.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

DAY_CONDITION

static final String DAY_CONDITION
The day time (after sunrise, before sunset) weather conditions code for the city. This is reserved for system use.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

DATE

static final String DATE
The date of the weather forecast.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

TEMP_LOW

static final String TEMP_LOW
The the forecasted low temperature.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

TEMP_HIGH

static final String TEMP_HIGH
The forecasted high temperature.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

NIGHT_TEXT

static final String NIGHT_TEXT
The night time (after sunset, before sunrise) conditions descriptions. This is reserved for system use.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

DAY_TEXT

static final String DAY_TEXT
The day time (after sunrise, before sunset) conditions descriptions. This is reserved for system use.

Since:
WIMM SDK 1.0.0
See Also:
Constant Field Values

WIMM Labs