| java.lang.Object | |
| ↳ | com.atlassian.jira.datetime.LocalDateFactory |
Used for creating LocalDate objects.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new LocalDate from the given
java.util.Date by interpreting the Date in the system (JVM) timezone. | |||||||||||
Turns an "ISO Basic" formatted date (ie YYYYMMDD) into a LocalDate.
| |||||||||||
Returns the LocalDate for a point in time in a given TimeZone.
| |||||||||||
Formats the given LocalDate in "ISO Basic" format (ie YYYYMMDD).
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Constructs a new LocalDate from the given java.util.Date by interpreting the Date in the system (JVM) timezone.
NB will return null output for null input
| date | the date to convert |
|---|
java.util.Date by interpreting the Date in the system (JVM) timezone. (null output for null input)
Turns an "ISO Basic" formatted date (ie YYYYMMDD) into a LocalDate.
| isoDate | an "ISO Basic" formatted date |
|---|
Returns the LocalDate for a point in time in a given TimeZone.
NB will return null output for null input
| date | The point in time |
|---|---|
| timeZone | The TimeZone |
Formats the given LocalDate in "ISO Basic" format (ie YYYYMMDD).
| localDate | the date to format. |
|---|

