-
Notifications
You must be signed in to change notification settings - Fork 10
/
BuilderPattern.java
90 lines (61 loc) · 1.82 KB
/
BuilderPattern.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.camnter.basicexercises.design.builder;
/**
* @author CaMnter
*/
public class BuilderPattern {
public static void main(String[] args) {
new Actor.Builder()
.type("type")
.sex("sex")
.face("face")
.costume("costume")
.hairstyle("hairstyle")
.build();
}
public static class Actor {
private final String type;
private final String sex;
private final String face;
private final String costume;
private final String hairstyle;
private Actor(Builder builder) {
this.type = builder.type;
this.sex = builder.sex;
this.face = builder.face;
this.costume = builder.costume;
this.hairstyle = builder.hairstyle;
}
public static class Builder {
private String type;
private String sex;
private String face;
private String costume;
private String hairstyle;
public Builder() {
}
public Builder type(String type) {
this.type = type;
return this;
}
public Builder sex(String sex) {
this.sex = sex;
return this;
}
public Builder face(String face) {
this.face = face;
return this;
}
public Builder costume(String costume) {
this.costume = costume;
return this;
}
public Builder hairstyle(String hairstyle) {
this.hairstyle = hairstyle;
return this;
}
public Actor build() {
return new Actor(this);
}
}
}
}