6366df2da397551257a59e9fecee5064e4eb6c57
[JavaForFun] /
1 package name.gumartinm.weather.information.model.forecastweather;
2
3 import java.io.Serializable;
4
5
6 public class List implements Serializable {
7     private static final long serialVersionUID = 838468273188666785L;
8     private Number clouds;
9     private Number deg;
10     private Number dt;
11     private Number humidity;
12     private Number pressure;
13     private Number rain;
14     private Number snow;
15     private Number speed;
16     private Temp temp;
17     private java.util.List<Weather> weather;
18
19     public Number getClouds(){
20         return this.clouds;
21     }
22     public void setClouds(final Number clouds){
23         this.clouds = clouds;
24     }
25     public Number getDeg(){
26         return this.deg;
27     }
28     public void setDeg(final Number deg){
29         this.deg = deg;
30     }
31     public Number getDt(){
32         return this.dt;
33     }
34     public void setDt(final Number dt){
35         this.dt = dt;
36     }
37     public Number getHumidity(){
38         return this.humidity;
39     }
40     public void setHumidity(final Number humidity){
41         this.humidity = humidity;
42     }
43     public Number getPressure(){
44         return this.pressure;
45     }
46     public void setPressure(final Number pressure){
47         this.pressure = pressure;
48     }
49     public Number getRain(){
50         return this.rain;
51     }
52     public void setRain(final Number rain){
53         this.rain = rain;
54     }
55     public Number getSnow() {
56         return this.snow;
57     }
58     public void setSnow(final Number snow) {
59         this.snow = snow;
60     }
61     public Number getSpeed(){
62         return this.speed;
63     }
64     public void setSpeed(final Number speed){
65         this.speed = speed;
66     }
67     public Temp getTemp(){
68         return this.temp;
69     }
70     public void setTemp(final Temp temp){
71         this.temp = temp;
72     }
73
74     public java.util.List<Weather> getWeather() {
75         return this.weather;
76     }
77
78     public void setWeather(final java.util.List<Weather> weather) {
79         this.weather = weather;
80     }
81
82     @Override
83     public String toString() {
84         final StringBuilder builder = new StringBuilder();
85         builder.append("List [clouds=").append(this.clouds).append(", deg=").append(this.deg)
86         .append(", dt=").append(this.dt).append(", humidity=").append(this.humidity)
87         .append(", pressure=").append(this.pressure).append(", rain=").append(this.rain)
88         .append(", snow=").append(this.snow).append(", speed=").append(this.speed)
89         .append(", temp=").append(this.temp).append(", weather=").append(this.weather)
90         .append("]");
91         return builder.toString();
92     }
93 }