java.lang.Object | |
↳ | com.atlassian.jira.jql.util.JqlLocalDateSupportImpl |
Default implementation for JqlLocalDateSupport
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | PATTERN_WITH_HYPHEN | ||||||||||
String | PATTERN_WITH_SLASH |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Converts a LocalDate to a Date using the systems time zone.
| |||||||||||
Try to parse the passed date string using the formats that JQL understands.
| |||||||||||
Try to parse the passed date long.
| |||||||||||
Converts a date into the index-friendly format.
| |||||||||||
Return a string representation of the passed date.
| |||||||||||
Check to see if the passed string is a valid date according to JQL.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||
![]()
|
Converts a LocalDate to a Date using the systems time zone.
date | the date to convert. Cannot be null. |
---|
Try to parse the passed date string using the formats that JQL understands. It will consider the user's time zone when parsing the date string.
dateString | the string to parse. Cannot be empty or null. |
---|
Try to parse the passed date long.
dateLong | the string to parse. Cannot be empty or null. |
---|
Converts a date into the index-friendly format.
date | the date |
---|
Return a string representation of the passed date. This method should just convert the date into its parseable String representation.
localDate | the date to convert. Cannot be null. |
---|
Check to see if the passed string is a valid date according to JQL.
dateString | the string to check cannot be null. |
---|