-
Notifications
You must be signed in to change notification settings - Fork 722
/
Copy pathLadder.java
48 lines (38 loc) · 1.21 KB
/
Ladder.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
package nextstep.ladder.domain;
import nextstep.ladder.exception.CannotMakeLadderException;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Ladder {
private final ArrayList<Line> lines;
public static Ladder generate(LadderInfo ladderInfo) {
validateHeight(ladderInfo.getHeight());
return new Ladder((ArrayList<Line>) Stream.generate(() -> new Line(ladderInfo.getNumberOfLines()))
.limit(ladderInfo.getHeight())
.collect(Collectors.toList()));
}
private static void validateHeight(int ladderHeight) {
if (ladderHeight < 1) {
throw new CannotMakeLadderException("사다리 높이는 1보다 작을 수 없습니다.");
}
}
private Ladder(ArrayList<Line> lines) {
this.lines = lines;
}
public int getHeight() {
return lines.size();
}
public List<Line> getLines() {
return lines;
}
public Line getLineByHeight(int height) {
return lines.get(height);
}
@Override
public String toString() {
return "Ladder{" +
"lines=" + lines +
'}';
}
}