-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathPeriod.java
43 lines (34 loc) · 1.05 KB
/
Period.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
package nextstep.courses.domain;
import nextstep.courses.exception.InvalidPeriodException;
import nextstep.courses.exception.InvalidPeriodRangeException;
import java.time.LocalDate;
public class Period {
private final LocalDate startDate;
private final LocalDate endDate;
public Period(LocalDate startDate, LocalDate endDate) {
validatePeriod(startDate, endDate);
this.startDate = startDate;
this.endDate = endDate;
}
private void validatePeriod(LocalDate startDate, LocalDate endDate) {
if (startDate == null || endDate == null) {
throw new InvalidPeriodException();
}
if (endDate.isBefore(startDate)) {
throw new InvalidPeriodRangeException();
}
}
public LocalDate startDate() {
return startDate;
}
public LocalDate endDate() {
return endDate;
}
@Override
public String toString() {
return "Period{" +
"startDate=" + startDate +
", endDate=" + endDate +
'}';
}
}