是否有任何标准的Java实现来表示 FROM 和 TO 的时间范围?其实我正在使用以下课程。
我还查看了Instant.range()
或Period
,它们都没有定义时间范围或范围,而是计算句点的持续时间而不是使用 FROM <保存确切的时间范围/ strong>和 TO 。
public class TimeRange {
private Instant from, to;
public TimeRange(Instant from, Instant to) {
this.from = from;
this.to = to;
}
public Instant getFrom() {
return from;
}
public void setFrom(Instant from) {
this.from = from;
}
public Instant getTo() {
return to;
}
public void setTo(Instant to) {
this.to = to;
}
public boolean isProperlySet() {
return from != null && to != null;
}
}