Package ch.qos.logback.core.util
Class Duration
java.lang.Object
ch.qos.logback.core.util.Duration
Duration instances represent a lapse of time. Internally, the duration is
stored in milliseconds. However, whenever a parameter of type Duration is expected, Joran
(logback's configuration system) will automatically convert strings such as "20 seconds"
"3.5 minutes" or "5 hours" into Duration instances.
The recognized units of time are the "millisecond", "second", "minute" "hour" and "day". The unit name may be followed by an "s". Thus, "2 day" and "2 days" are equivalent. In the absence of a time unit specification, milliseconds are assumed.
Note: the conversion magic is entirely due to the fact that this class follows the
valueOf(java.lang.String) convention.
- Author:
- Ceki Gulcu
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DurationbuildByDays(double value)static DurationbuildByHours(double value)static DurationbuildByMilliseconds(double value)static DurationbuildByMinutes(double value)static DurationbuildBySeconds(double value)static DurationlongtoString()static Duration