JavaScript is disabled on your browser.
Skip navigation links
Overview
Class
Tree
Index
Search
Help
smile.util
Dates
Contents
Description
Method Summary
Method Details
range(LocalDate, LocalDate)
range(LocalDate, int)
Hide sidebar
Show sidebar
Interface Dates
public interface
Dates
Date and time utility functions.
Method Summary
Static Methods
Modifier and Type
Method
Description
static
LocalDate
[]
range
(
LocalDate
from, int days)
Returns the dates in the range.
static
LocalDate
[]
range
(
LocalDate
from,
LocalDate
to)
Returns the dates in the range.
Method Details
range
static
LocalDate
[]
range
(
LocalDate
from,
LocalDate
to)
Returns the dates in the range.
Parameters:
from
- the inclusive start date.
to
- the exclusive end date.
Returns:
the dates in the range.
range
static
LocalDate
[]
range
(
LocalDate
from, int days)
Returns the dates in the range.
Parameters:
from
- the inclusive start date.
days
- the number of days. If negative, returns the proceeding dates.
Returns:
the dates in the range.