d21ff7718866a56fb17a71c6668d7196dc21ed0c
[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 public class Temp implements Serializable {
21     private static final long serialVersionUID = -7614799035018271127L;
22     private Number day;
23     private Number eve;
24     private Number max;
25     private Number min;
26     private Number morn;
27     private Number night;
28
29     public Number getDay(){
30         return this.day;
31     }
32     public void setDay(final Number day){
33         this.day = day;
34     }
35     public Number getEve(){
36         return this.eve;
37     }
38     public void setEve(final Number eve){
39         this.eve = eve;
40     }
41     public Number getMax(){
42         return this.max;
43     }
44     public void setMax(final Number max){
45         this.max = max;
46     }
47     public Number getMin(){
48         return this.min;
49     }
50     public void setMin(final Number min){
51         this.min = min;
52     }
53     public Number getMorn(){
54         return this.morn;
55     }
56     public void setMorn(final Number morn){
57         this.morn = morn;
58     }
59     public Number getNight(){
60         return this.night;
61     }
62     public void setNight(final Number night){
63         this.night = night;
64     }
65
66     @Override
67     public String toString() {
68         final StringBuilder builder = new StringBuilder();
69         builder.append("Temp [day=").append(this.day).append(", eve=").append(this.eve)
70         .append(", max=").append(this.max).append(", min=").append(this.min)
71         .append(", morn=").append(this.morn).append(", night=").append(this.night)
72         .append("]");
73         return builder.toString();
74     }
75 }