Package ch.qos.logback.core.util
Class Duration
java.lang.Object
ch.qos.logback.core.util.Duration
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
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.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Duration
buildByDays
(double value) Deprecated.static Duration
buildByHours
(double value) Deprecated.static Duration
buildByMilliseconds
(double value) Deprecated.static Duration
buildByMinutes
(double value) Deprecated.static Duration
buildBySeconds
(double value) Deprecated.static Duration
Deprecated.long
Deprecated.toString()
Deprecated.static Duration
Deprecated.
-
Constructor Details
-
Duration
public Duration(long millis) Deprecated.
-
-
Method Details