WIMM Labs


com.wimm.framework.provider
Class Weather.WeatherInfo

java.lang.Object
  extended by com.wimm.framework.provider.Weather.WeatherInfo
Enclosing class:
Weather

public static class Weather.WeatherInfo
extends Object

This class represents a single day of weather information for a specific city.

"Day" here refers to the period after sunrise and before sunset.

"Night" here refers to the period after sunset and before sunrise.

Since:
WIMM SDK 1.0.0
See Also:
Weather

Field Summary
 String cityName
          The city name.
 long date
          The date.
 int dayCondition
          The day condition code.
 String dayText
          The string that describe the Day Time weather conditions.
 int highTemp
          The high temperature.
 long latitude
          The latitude.
 long longitude
          The longitude.
 int lowTemp
          The low temperature.
 int nightCondition
          The night condition code.
 String nightText
          The string that describe the Night Time weather conditions.
 String timeZone
          The time zone.
 String uid
          A unique identifier for the city.
 
Constructor Summary
Weather.WeatherInfo()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

cityName

public String cityName
The city name.

Since:
WIMM SDK 1.0.0

timeZone

public String timeZone
The time zone.

Since:
WIMM SDK 1.0.0

latitude

public long latitude
The latitude.

Since:
WIMM SDK 1.0.0

longitude

public long longitude
The longitude.

Since:
WIMM SDK 1.0.0

nightCondition

public int nightCondition
The night condition code. This is reserved for system use.

Since:
WIMM SDK 1.0.0

dayCondition

public int dayCondition
The day condition code. This is reserved for system use.

Since:
WIMM SDK 1.0.0

date

public long date
The date.

Since:
WIMM SDK 1.0.0

lowTemp

public int lowTemp
The low temperature.

Since:
WIMM SDK 1.0.0

highTemp

public int highTemp
The high temperature.

Since:
WIMM SDK 1.0.0

dayText

public String dayText
The string that describe the Day Time weather conditions. This is reserved for system use.

Since:
WIMM SDK 1.0.0

nightText

public String nightText
The string that describe the Night Time weather conditions. This is reserved for system use.

Since:
WIMM SDK 1.0.0

uid

public String uid
A unique identifier for the city.

Since:
WIMM SDK 1.0.0
Constructor Detail

Weather.WeatherInfo

public Weather.WeatherInfo()

WIMM Labs