forked from next-step/java-racingcar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPosition.java
44 lines (35 loc) · 871 Bytes
/
Position.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
package race;
import java.util.Objects;
public class Position {
private int value;
public Position() {
this(0);
}
public Position(int value) {
this.value = value;
}
public Position move() {
this.value++;
return this;
}
public int getValue() {
return this.value;
}
public Position getMax(Position comparePosition) {
if (this.value > comparePosition.getValue()) {
return this;
}
return comparePosition;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
Position position = (Position) obj;
return value == position.value;
}
@Override
public int hashCode() {
return Objects.hash(value);
}
}