Class DurationFormatUtils
- java.lang.Object
-
- org.apache.commons.lang3.time.DurationFormatUtils
-
public class DurationFormatUtils extends Object
Duration formatting utilities and constants. The following table describes the tokens used in the pattern language for formatting.
Note: It's not currently possible to include a single-quote in a format.Pattern Tokens character duration element y years M months d days H hours m minutes s seconds S milliseconds 'text' arbitrary text content
Token values are printed using decimal digits. A token character can be repeated to ensure that the field occupies a certain minimum size. Values will be left-padded with 0 unless padding is disabled in the method invocation.- Since:
- 2.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classDurationFormatUtils.TokenElement that is parsed from the format pattern.
-
Field Summary
Fields Modifier and Type Field Description (package private) static Stringd(package private) static StringHstatic StringISO_EXTENDED_FORMAT_PATTERNPattern used withFastDateFormatandSimpleDateFormatfor the ISO 8601 period format used in durations.(package private) static Stringm(package private) static StringM(package private) static Strings(package private) static StringS(package private) static Stringy
-
Constructor Summary
Constructors Constructor Description DurationFormatUtils()DurationFormatUtils instances should NOT be constructed in standard programming.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description (package private) static Stringformat(DurationFormatUtils.Token[] tokens, long years, long months, long days, long hours, long minutes, long seconds, long milliseconds, boolean padWithZeros)The internal method to do the formatting.static StringformatDuration(long durationMillis, String format)Formats the time gap as a string, using the specified format, and padding with zeros.static StringformatDuration(long durationMillis, String format, boolean padWithZeros)Formats the time gap as a string, using the specified format.static StringformatDurationHMS(long durationMillis)Formats the time gap as a string.static StringformatDurationISO(long durationMillis)Formats the time gap as a string.static StringformatDurationWords(long durationMillis, boolean suppressLeadingZeroElements, boolean suppressTrailingZeroElements)Formats an elapsed time into a pluralization correct string.static StringformatPeriod(long startMillis, long endMillis, String format)Formats the time gap as a string, using the specified format.static StringformatPeriod(long startMillis, long endMillis, String format, boolean padWithZeros, TimeZone timezone)Formats the time gap as a string, using the specified format.static StringformatPeriodISO(long startMillis, long endMillis)Formats the time gap as a string.(package private) static DurationFormatUtils.Token[]lexx(String format)Parses a classic date format string into Tokens
-
-
-
Field Detail
-
ISO_EXTENDED_FORMAT_PATTERN
public static final String ISO_EXTENDED_FORMAT_PATTERN
Pattern used with
FastDateFormatandSimpleDateFormatfor the ISO 8601 period format used in durations.- See Also:
FastDateFormat,SimpleDateFormat, Constant Field Values
-
y
static final String y
- See Also:
- Constant Field Values
-
M
static final String M
- See Also:
- Constant Field Values
-
d
static final String d
- See Also:
- Constant Field Values
-
H
static final String H
- See Also:
- Constant Field Values
-
m
static final String m
- See Also:
- Constant Field Values
-
s
static final String s
- See Also:
- Constant Field Values
-
S
static final String S
- See Also:
- Constant Field Values
-
-
Method Detail
-
formatDurationHMS
public static String formatDurationHMS(long durationMillis)
Formats the time gap as a string.
The format used is ISO 8601-like:
HH:mm:ss.SSS.- Parameters:
durationMillis- the duration to format- Returns:
- the formatted duration, not null
- Throws:
IllegalArgumentException- if durationMillis is negative
-
formatDurationISO
public static String formatDurationISO(long durationMillis)
Formats the time gap as a string.
The format used is the ISO 8601 period format.
This method formats durations using the days and lower fields of the ISO format pattern, such as P7D6TH5M4.321S.
- Parameters:
durationMillis- the duration to format- Returns:
- the formatted duration, not null
- Throws:
IllegalArgumentException- if durationMillis is negative
-
formatDuration
public static String formatDuration(long durationMillis, String format)
Formats the time gap as a string, using the specified format, and padding with zeros.
This method formats durations using the days and lower fields of the format pattern. Months and larger are not used.
- Parameters:
durationMillis- the duration to formatformat- the way in which to format the duration, not null- Returns:
- the formatted duration, not null
- Throws:
IllegalArgumentException- if durationMillis is negative
-
formatDuration
public static String formatDuration(long durationMillis, String format, boolean padWithZeros)
Formats the time gap as a string, using the specified format. Padding the left hand side of numbers with zeroes is optional.
This method formats durations using the days and lower fields of the format pattern. Months and larger are not used.
- Parameters:
durationMillis- the duration to formatformat- the way in which to format the duration, not nullpadWithZeros- whether to pad the left hand side of numbers with 0's- Returns:
- the formatted duration, not null
- Throws:
IllegalArgumentException- if durationMillis is negative
-
formatDurationWords
public static String formatDurationWords(long durationMillis, boolean suppressLeadingZeroElements, boolean suppressTrailingZeroElements)
Formats an elapsed time into a pluralization correct string.
This method formats durations using the days and lower fields of the format pattern. Months and larger are not used.
- Parameters:
durationMillis- the elapsed time to report in millisecondssuppressLeadingZeroElements- suppresses leading 0 elementssuppressTrailingZeroElements- suppresses trailing 0 elements- Returns:
- the formatted text in days/hours/minutes/seconds, not null
- Throws:
IllegalArgumentException- if durationMillis is negative
-
formatPeriodISO
public static String formatPeriodISO(long startMillis, long endMillis)
Formats the time gap as a string.
The format used is the ISO 8601 period format.
- Parameters:
startMillis- the start of the duration to formatendMillis- the end of the duration to format- Returns:
- the formatted duration, not null
- Throws:
IllegalArgumentException- if startMillis is greater than endMillis
-
formatPeriod
public static String formatPeriod(long startMillis, long endMillis, String format)
Formats the time gap as a string, using the specified format. Padding the left hand side of numbers with zeroes is optional.
- Parameters:
startMillis- the start of the durationendMillis- the end of the durationformat- the way in which to format the duration, not null- Returns:
- the formatted duration, not null
- Throws:
IllegalArgumentException- if startMillis is greater than endMillis
-
formatPeriod
public static String formatPeriod(long startMillis, long endMillis, String format, boolean padWithZeros, TimeZone timezone)
Formats the time gap as a string, using the specified format. Padding the left hand side of numbers with zeroes is optional and the time zone may be specified.
When calculating the difference between months/days, it chooses to calculate months first. So when working out the number of months and days between January 15th and March 10th, it choose 1 month and 23 days gained by choosing January->February = 1 month and then calculating days forwards, and not the 1 month and 26 days gained by choosing March -> February = 1 month and then calculating days backwards.
For more control, the Joda-Time library is recommended.
- Parameters:
startMillis- the start of the durationendMillis- the end of the durationformat- the way in which to format the duration, not nullpadWithZeros- whether to pad the left hand side of numbers with 0'stimezone- the millis are defined in- Returns:
- the formatted duration, not null
- Throws:
IllegalArgumentException- if startMillis is greater than endMillis
-
format
static String format(DurationFormatUtils.Token[] tokens, long years, long months, long days, long hours, long minutes, long seconds, long milliseconds, boolean padWithZeros)
The internal method to do the formatting.
- Parameters:
tokens- the tokensyears- the number of yearsmonths- the number of monthsdays- the number of dayshours- the number of hoursminutes- the number of minutesseconds- the number of secondsmilliseconds- the number of millispadWithZeros- whether to pad- Returns:
- the formatted string
-
lexx
static DurationFormatUtils.Token[] lexx(String format)
Parses a classic date format string into Tokens- Parameters:
format- the format to parse, not null- Returns:
- array of Token[]
-
-