-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathMain.java
More file actions
66 lines (50 loc) · 1.27 KB
/
Main.java
File metadata and controls
66 lines (50 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package github.vatsal.easyweather.retrofit.models;
/**
* Created by
* --Vatsal Bajpai under
* --AppyWare on
* --22/06/16 at
* --8:23 PM in
* --OpenWeatherMapDemo
*/
public class Main {
private String humidity;
private String pressure;
private String temp_max;
private String temp_min;
private String temp;
public String getHumidity() {
return humidity;
}
public void setHumidity(String humidity) {
this.humidity = humidity;
}
public String getPressure() {
return pressure;
}
public void setPressure(String pressure) {
this.pressure = pressure;
}
public String getTemp_max() {
return temp_max;
}
public void setTemp_max(String temp_max) {
this.temp_max = temp_max;
}
public String getTemp_min() {
return temp_min;
}
public void setTemp_min(String temp_min) {
this.temp_min = temp_min;
}
public String getTemp() {
return temp;
}
public void setTemp(String temp) {
this.temp = temp;
}
@Override
public String toString() {
return String.format("ClassPojo [humidity = %s, pressure = %s, temp_max = %s, temp_min = %s, temp = %s]", humidity, pressure, temp_max, temp_min, temp);
}
}