We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Java 8 date and time APIs including
LocalDate
LocalDateTime
LocalTime
YearMonth
Year
Brief explanation of the feature.
2022-01-10
2022-01-01 01:01:01
01:01:01
2022-01
2022
Allows configuring the relative format in the configuration.
If the proposal involves a new or changed API, include a basic code example. Omit this section if it's not applicable.
Why are we doing this? What use cases does it support? What is the expected outcome?
The text was updated successfully, but these errors were encountered:
@yhan219 Isn't the default format for LocalDate and LocalDateTime already correct?
Sorry, something went wrong.
Yes, it is correct; it seems that the others are not available.
Additionally, there's MonthDay which should be formatted as 01-01.
MonthDay
01-01
095bcfd
netdied
No branches or pull requests
Summary(Description of this PR)
Support for Java 8 date and time APIs including
LocalDate
LocalDateTime
LocalTime
YearMonth
Year
Brief explanation of the feature.
Basic Example(Usage Example of the PR)
LocalDate
, the format will be2022-01-10
LocalDateTime
, the format will be2022-01-01 01:01:01
LocalTime
, the format will be01:01:01
YearMonth
, the format will be2022-01
Year
, the format will be2022
Allows configuring the relative format in the configuration.
If the proposal involves a new or changed API, include a basic code example. Omit this section if it's not applicable.
Motivation(Purpose of this PR)
Why are we doing this? What use cases does it support? What is the expected outcome?
The text was updated successfully, but these errors were encountered: