Java中START和END的时间范围

时间:2017-09-13 07:46:46

标签: java time

是否有任何标准的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;
  }
}

0 个答案:

没有答案