Package org.opennms.core.utils
Class TimeConverter
- java.lang.Object
-
- org.opennms.core.utils.TimeConverter
-
-
Constructor Summary
Constructors Constructor Description TimeConverter()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static long
convertToMillis(String valueToConvert)
Converts the passed time string to a time value that is measured in milliseconds.
-
-
-
Method Detail
-
convertToMillis
public static long convertToMillis(String valueToConvert) throws NumberFormatException
Converts the passed time string to a time value that is measured in milliseconds. The following extension are considered when converting the string:
Extension Conversion Value us Microseconds ms Milliseconds s Seconds m Minutes h Hours d Days A number entered with out any units is considered to be in milliseconds.
- Parameters:
valueToConvert
- The string to convert to milliseconds.- Returns:
- Returns the string converted to a millisecond value.
- Throws:
NumberFormatException
- if the string is malformed and a number cannot be extracted from the value..
-
-