-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnumAdvanced2.java
50 lines (38 loc) · 879 Bytes
/
EnumAdvanced2.java
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
package concept.examples.enums;
public class EnumAdvanced2 {
// Enum with a variable,method and constructor
enum SeasonCustomized {
WINTER(1) {
@Override
public int getExpectedMaxTemperature() {
return 5;
}
},
SPRING(2), SUMMER(3) {
@Override
public int getExpectedMaxTemperature() {
return 20;
}
},
FALL(4);
// variable
private int code;
// method
public int getCode() {
return code;
}
// Constructor-only private or (default)
// modifiers are allowed
SeasonCustomized(int code) {
this.code = code;
}
public int getExpectedMaxTemperature() {
return 10;
}
}
public static void main(String[] args) {
SeasonCustomized season = SeasonCustomized.WINTER;
System.out.println(season.getExpectedMaxTemperature());// 5
System.out.println(SeasonCustomized.FALL.getExpectedMaxTemperature());// 10
}
}