1dc391492399c4bc20e818b7018cbdcdd623e3f7
[JavaForFun] /
1 package name.gumartinm.weather.information.model.forecastweather;
2
3 import java.io.Serializable;
4
5
6 public class City implements Serializable {
7     private static final long serialVersionUID = 3079687975077030704L;
8     private Coord coord;
9     private String country;
10     private Number id;
11     private String name;
12     private Number population;
13
14     public Coord getCoord(){
15         return this.coord;
16     }
17     public void setCoord(final Coord coord){
18         this.coord = coord;
19     }
20     public String getCountry(){
21         return this.country;
22     }
23     public void setCountry(final String country){
24         this.country = country;
25     }
26     public Number getId(){
27         return this.id;
28     }
29     public void setId(final Number id){
30         this.id = id;
31     }
32     public String getName(){
33         return this.name;
34     }
35     public void setName(final String name){
36         this.name = name;
37     }
38     public Number getPopulation(){
39         return this.population;
40     }
41     public void setPopulation(final Number population){
42         this.population = population;
43     }
44
45     @Override
46     public String toString() {
47         final StringBuilder builder = new StringBuilder();
48         builder.append("City [coord=").append(this.coord).append(", country=").append(this.country)
49         .append(", id=").append(this.id).append(", name=").append(this.name)
50         .append(", population=").append(this.population).append("]");
51         return builder.toString();
52     }
53 }