package com.mjdev.weather;
public class weather_current_condition {
private String dayofWeek = null;
private Integer tempCelcius = null;
private Integer tempFahrenheit = null;
private String iconURL = null;
private String condition = null;
private String windCondition = null;
private String humidity = null;
public weather_current_condition() {
}
public String getDayofWeek() {
return this.dayofWeek;
}
public void setDayofWeek(String dayofWeek) {
this.dayofWeek = dayofWeek;
}
public Integer getTempCelcius() {
return this.tempCelcius;
}
public void setTempCelcius(Integer temp) {
this.tempCelcius = temp;
}
public Integer getTempFahrenheit() {
return this.tempFahrenheit;
}
public void setTempFahrenheit(Integer temp) {
this.tempFahrenheit = temp;
}
public String getIconURL() {
return this.iconURL;
}
public void setIconURL(String iconURL) {
this.iconURL = iconURL;
}
public String getCondition() {
return this.condition.toLowerCase();
}
public void setCondition(String condition) {
this.condition = condition.toLowerCase();
}
public String getWindCondition() {
return this.windCondition;
}
public void setWindCondition(String windCondition) {
this.windCondition = windCondition;
}
public String getHumidity() {
return this.humidity;
}
public void setHumidity(String humidity) {
this.humidity = humidity;
}
}
|