Package org.salespointframework.time
Class Interval.IntervalBuilder
- java.lang.Object
-
- org.salespointframework.time.Interval.IntervalBuilder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Intervalto(LocalDateTime end)Creates anIntervalfrom the current start time until the given end time.IntervalwithLength(TemporalAmount amount)Creates a newIntervalfrom the current start time adding the givenTemporalAmountto it.
-
-
-
Method Detail
-
to
public Interval to(LocalDateTime end)
Creates anIntervalfrom the current start time until the given end time.- Parameters:
end- must not be null and after the current start time or equal to it.- Returns:
- will never be null.
-
withLength
public Interval withLength(TemporalAmount amount)
Creates a newIntervalfrom the current start time adding the givenTemporalAmountto it.- Parameters:
amount- must not be null.- Returns:
- will never be null.
- See Also:
Duration
-
-