- java.lang.Object
-
- org.threeten.extra.AmountFormats
-
public final class AmountFormats extends java.lang.ObjectProvides the ability to format a temporal amount.This allows a
TemporalAmount, such asDurationorPeriod, to be formatted. Only selected formatting options are provided.Implementation Requirements:
This class is immutable and thread-safe.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Stringiso8601(java.time.Period period, java.time.Duration duration)Formats a period and duration to a string in ISO-8601 format.static java.time.DurationparseUnitBasedDuration(java.lang.CharSequence durationText)Parses formatted durations based on units.static java.lang.StringwordBased(java.time.Duration duration, java.util.Locale locale)Formats a duration to a string in a localized word-based format.static java.lang.StringwordBased(java.time.Period period, java.time.Duration duration, java.util.Locale locale)Formats a period and duration to a string in a localized word-based format.static java.lang.StringwordBased(java.time.Period period, java.util.Locale locale)Formats a period to a string in a localized word-based format.
-
-
-
Method Detail
-
iso8601
public static java.lang.String iso8601(java.time.Period period, java.time.Duration duration)Formats a period and duration to a string in ISO-8601 format.To obtain the ISO-8601 format of a
PeriodorDurationindividually, simply calltoString(). See alsoPeriodDuration.- Parameters:
period- the period to formatduration- the duration to format- Returns:
- the ISO-8601 format for the period and duration
-
wordBased
public static java.lang.String wordBased(java.time.Period period, java.util.Locale locale)Formats a period to a string in a localized word-based format.This returns a word-based format for the period. The year and month are printed as supplied unless the signs differ, in which case they are normalized. The words are configured in a resource bundle text file -
org.threeten.extra.wordbased.properties- with overrides per language.- Parameters:
period- the period to formatlocale- the locale to use- Returns:
- the localized word-based format for the period
-
wordBased
public static java.lang.String wordBased(java.time.Duration duration, java.util.Locale locale)Formats a duration to a string in a localized word-based format.This returns a word-based format for the duration. The words are configured in a resource bundle text file -
org.threeten.extra.wordbased.properties- with overrides per language.- Parameters:
duration- the duration to formatlocale- the locale to use- Returns:
- the localized word-based format for the duration
-
wordBased
public static java.lang.String wordBased(java.time.Period period, java.time.Duration duration, java.util.Locale locale)Formats a period and duration to a string in a localized word-based format.This returns a word-based format for the period. The year and month are printed as supplied unless the signs differ, in which case they are normalized. The words are configured in a resource bundle text file -
org.threeten.extra.wordbased.properties- with overrides per language.- Parameters:
period- the period to formatduration- the duration to formatlocale- the locale to use- Returns:
- the localized word-based format for the period and duration
-
parseUnitBasedDuration
public static java.time.Duration parseUnitBasedDuration(java.lang.CharSequence durationText)
Parses formatted durations based on units.The behaviour matches the Golang duration parser, however, infinite durations are not supported.
The duration format is a possibly signed sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms", "-1.5h" or "2h45m". Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
Note, the value "0" is specially supported as
Duration.ZERO.- Parameters:
durationText- the formatted unit-based duration string.- Returns:
- the
Durationvalue represented by the string, if possible.
-
-