0dcade974231003a80f99577fdb107b845280fe4
[JavaForFun] /
1 /**
2  * Copyright 2014 Gustavo Martin Morcuende
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package name.gumartinm.weather.information.model.forecastweather;
17
18 import java.io.Serializable;
19
20
21 public class List implements Serializable {
22     private static final long serialVersionUID = 838468273188666785L;
23     private Number clouds;
24     private Number deg;
25     private Number dt;
26     private Number humidity;
27     private Number pressure;
28     private Number rain;
29     private Number snow;
30     private Number speed;
31     private Temp temp;
32     private java.util.List<Weather> weather;
33
34     public Number getClouds(){
35         return this.clouds;
36     }
37     public void setClouds(final Number clouds){
38         this.clouds = clouds;
39     }
40     public Number getDeg(){
41         return this.deg;
42     }
43     public void setDeg(final Number deg){
44         this.deg = deg;
45     }
46     public Number getDt(){
47         return this.dt;
48     }
49     public void setDt(final Number dt){
50         this.dt = dt;
51     }
52     public Number getHumidity(){
53         return this.humidity;
54     }
55     public void setHumidity(final Number humidity){
56         this.humidity = humidity;
57     }
58     public Number getPressure(){
59         return this.pressure;
60     }
61     public void setPressure(final Number pressure){
62         this.pressure = pressure;
63     }
64     public Number getRain(){
65         return this.rain;
66     }
67     public void setRain(final Number rain){
68         this.rain = rain;
69     }
70     public Number getSnow() {
71         return this.snow;
72     }
73     public void setSnow(final Number snow) {
74         this.snow = snow;
75     }
76     public Number getSpeed(){
77         return this.speed;
78     }
79     public void setSpeed(final Number speed){
80         this.speed = speed;
81     }
82     public Temp getTemp(){
83         return this.temp;
84     }
85     public void setTemp(final Temp temp){
86         this.temp = temp;
87     }
88
89     public java.util.List<Weather> getWeather() {
90         return this.weather;
91     }
92
93     public void setWeather(final java.util.List<Weather> weather) {
94         this.weather = weather;
95     }
96
97     @Override
98     public String toString() {
99         final StringBuilder builder = new StringBuilder();
100         builder.append("List [clouds=").append(this.clouds).append(", deg=").append(this.deg)
101         .append(", dt=").append(this.dt).append(", humidity=").append(this.humidity)
102         .append(", pressure=").append(this.pressure).append(", rain=").append(this.rain)
103         .append(", snow=").append(this.snow).append(", speed=").append(this.speed)
104         .append(", temp=").append(this.temp).append(", weather=").append(this.weather)
105         .append("]");
106         return builder.toString();
107     }
108 }