java.lang.Object | |
↳ | com.atlassian.jira.issue.history.DateTimeFieldChangeLogHelperImpl |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Converts a Date into a string representation for the issue change history.
| |||||||||||
Converts a Date into a string representation for the issue change history.
| |||||||||||
Use this method to render a value for the issue change history that has been stored using the method createChangelogValueForDateField().
| |||||||||||
Use this method to render a value for the issue change history that has been stored using the method createChangelogValueForDateTimeField().
|
[Expand]
Inherited Methods | |||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Object | |||||||||||||||||||
From interface
com.atlassian.jira.issue.history.DateTimeFieldChangeLogHelper
|
Converts a Date into a string representation for the issue change history. Call this method, if you want to store a change history value for a (custom)field which stores ONLY calendar date (day, month, year) information.
date | date the value Date of the (custome)field |
---|
Converts a Date into a string representation for the issue change history. Call this method, if you want to store a change history value for a (custom)field which stores date AND time information.
date | the value Date of the (custome)field |
---|
Use this method to render a value for the issue change history that has been stored using the method createChangelogValueForDateField(). This value should contain only date information. The com.atlassian.jira.datetime.DateTimeStyle.DATE formatter is used to render the change history value.
dateValue | the value of the ChangeHistoryItem |
---|---|
dateStr | the string of the ChangeHistoryItem , if it can't convert the dateValue it will return the dateStr. |
Use this method to render a value for the issue change history that has been stored using the method createChangelogValueForDateTimeField(). This value should contain time AND time information. The com.atlassian.jira.datetime.DateTimeStyle.DATE_TIME_PICKER formatter is used to render the change history value.
dateTimeValue | the value of the ChangeHistoryItem |
---|---|
dateTimeString | the string of the ChangeHistoryItem , if it can't convert the dateTimeValue it will return the dateStr. |