Skip to content

Commit

Permalink
♻️ refactor: refactor codebase for TimeFormatText #3
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Jul 5, 2024
1 parent 0588584 commit 86ee356
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions plugin/src/main/groovy/org/unify4j/text/TimeFormatText.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,18 @@ public class TimeFormatText {
*/
public static final String BIBLIOGRAPHY_EPOCH_PATTERN = "yyyy-MM-dd HH:mm:ss";

/**
* Format: 2024-07-06 00:37:34,566
* Description: Pattern for a bibliographic style date and time including year, month, day, hour, minutes, seconds and milliseconds.
*/
public static final String BIBLIOGRAPHY_COMPLETE_EPOCH_PATTERN = "yyyy-MM-dd HH:mm:ss,SSS";

/**
* Format: Sat, 2024-07-06 00:37:34,566
* Description: Pattern for a bibliographic style date and time including the day of the week (EEE for abbreviated day name) year, month, day, hour, minutes, seconds and milliseconds.
*/
public static final String EEE_BIBLIOGRAPHY_COMPLETE_EPOCH_PATTERN = "EEE, yyyy-MM-dd HH:mm:ss,SSS";

/**
* Format: 2020-09-26
* Description: Short pattern for a bibliographic style date only including year, month, and day.
Expand Down

0 comments on commit 86ee356

Please sign in to comment.