public interface JqlDateSupport
Modifier and Type | Method and Description |
---|---|
Date |
convertToDate(Long dateLong)
Converts the long to a date.
|
Date |
convertToDate(String dateString)
Try to parse the passed date string using the formats that JQL understands.
|
DateRange |
convertToDateRange(Long dateLong)
Converts the long to a date range where both values equal each other.
|
DateRange |
convertToDateRangeWithImpliedPrecision(String dateString)
Try to parse the passed in date string using the formats that JQL understands.
|
String |
getDateString(Date date)
Return a string representation of the passed date.
|
String |
getIndexedValue(Date date)
Converts a date into the index-friendly format.
|
boolean |
validate(String dateString)
Check to see if the passed string is a valid date according to JQL.
|
Date convertToDate(String dateString)
dateString
- the string to parse. Cannot be null.validate(String)
right?IllegalArgumentException
- if the passed dateString is null.DateRange convertToDateRangeWithImpliedPrecision(String dateString)
dateString
- the string to parse. Cannot be null.validate(String)
right?IllegalArgumentException
- if the passed dateString is null.Date convertToDate(Long dateLong)
dateLong
- the long to give back a date for . Cannot be null.IllegalArgumentException
- if the passed in Long is nullDateRange convertToDateRange(Long dateLong)
dateLong
- the long to give back a date for . Cannot be null.IllegalArgumentException
- if the passed in Long is nullString getIndexedValue(Date date)
date
- the dateboolean validate(String dateString)
dateString
- the string to check cannot be null.IllegalArgumentException
- if the passed dateString is blank or nullString getDateString(Date date)
date
- the date to convert. Cannot be null.IllegalArgumentException
- if the passed date is null.Copyright © 2002-2012 Atlassian. All Rights Reserved.