-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCarWash.java
More file actions
74 lines (66 loc) · 1.24 KB
/
Copy pathCarWash.java
File metadata and controls
74 lines (66 loc) · 1.24 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
67
68
69
70
71
72
73
74
package chapter19.ten;
import java.util.EnumSet;
public class CarWash {
public enum Cycle{
UNDERBODY{
void action(){
System.out.println("Spraying the underbody");
}
},
WHEELWASH{
void action(){
System.out.println("Washing the wheels");
}
},
PREWASH{
void action(){
System.out.println("Loosening the dirt");
}
},
BASIN{
void action(){
System.out.println("The basic wash");
}
},
HOTWAX{
void action(){
System.out.println("Applying hot wax");
}
},
RINSE{
void action(){
System.out.println("Rinsing");
}
},
BLOWDRY{
void action(){
System.out.println("Blowing dry");
}
};
abstract void action();
}
EnumSet<Cycle> cycles=EnumSet.of(Cycle.HOTWAX, Cycle.BASIN, Cycle.UNDERBODY);
public void add(Cycle cycle){
cycles.add(cycle);
}
public void washCar(){
for(Cycle c:cycles){
c.action();
}
}
@Override
public String toString() {
// TODO Auto-generated method stub
return cycles.toString();
}
public static void main(String[] args) {
CarWash wash=new CarWash();
System.out.println(wash);
wash.washCar();
wash.add(Cycle.BLOWDRY);
wash.add(Cycle.RINSE);
wash.add(Cycle.HOTWAX);
System.out.println(wash);
wash.washCar();
}
}