2 * Copyright 2014 Gustavo Martin Morcuende
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package name.gumartinm.weather.information.model.forecastweather;
18 import java.io.Serializable;
20 public class Temp implements Serializable {
21 private static final long serialVersionUID = -2240491260916844781L;
29 public Number getDay(){
32 public void setDay(final Number day){
35 public Number getEve(){
38 public void setEve(final Number eve){
41 public Number getMax(){
44 public void setMax(final Number max){
47 public Number getMin(){
50 public void setMin(final Number min){
53 public Number getMorn(){
56 public void setMorn(final Number morn){
59 public Number getNight(){
62 public void setNight(final Number night){
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)
73 return builder.toString();