-
Notifications
You must be signed in to change notification settings - Fork 726
/
Copy pathLine.java
45 lines (38 loc) · 863 Bytes
/
Line.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
package nextstep.ladder.model;
import java.security.SecureRandom;
import java.util.Objects;
public class Line {
private final Boolean hasLine;
public Line(final boolean hasLine) {
this.hasLine = hasLine;
}
public static Line create(final Line prevLine) {
if (prevLine == null || !prevLine.hasLine) {
SecureRandom secureRandom = new SecureRandom();
return new Line(secureRandom.nextBoolean());
}
return new Line(false);
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final Line line = (Line)o;
return Objects.equals(hasLine, line.hasLine);
}
@Override
public int hashCode() {
return Objects.hash(hasLine);
}
@Override
public String toString() {
if (hasLine) {
return "-----|";
}
return " |";
}
}