Class ParsingUtils
- java.lang.Object
-
- org.apache.commons.compress.utils.ParsingUtils
-
public final class ParsingUtils extends java.lang.ObjectUtility methods for parsing data and converting it to other formats.- Since:
- 1.26.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intparseIntValue(java.lang.String value)Parses the provided string value to an Integer, assuming a base-10 radixstatic intparseIntValue(java.lang.String value, int radix)Parse the provided string value to an Integer with a provided radixstatic longparseLongValue(java.lang.String value)Parses the provided string value to a Long, assuming a base-10 radixstatic longparseLongValue(java.lang.String value, int radix)Parses the provided string value to a Long with a provided radix
-
-
-
Method Detail
-
parseIntValue
public static int parseIntValue(java.lang.String value) throws java.io.IOExceptionParses the provided string value to an Integer, assuming a base-10 radix- Parameters:
value- string value to parse- Returns:
- parsed value as an int
- Throws:
java.io.IOException- when the value cannot be parsed
-
parseIntValue
public static int parseIntValue(java.lang.String value, int radix) throws java.io.IOExceptionParse the provided string value to an Integer with a provided radix- Parameters:
value- string value to parseradix- radix value to use for parsing- Returns:
- parsed value as an int
- Throws:
java.io.IOException- when the value cannot be parsed
-
parseLongValue
public static long parseLongValue(java.lang.String value) throws java.io.IOExceptionParses the provided string value to a Long, assuming a base-10 radix- Parameters:
value- string value to parse- Returns:
- parsed value as a long
- Throws:
java.io.IOException- when the value cannot be parsed
-
parseLongValue
public static long parseLongValue(java.lang.String value, int radix) throws java.io.IOExceptionParses the provided string value to a Long with a provided radix- Parameters:
value- string value to parseradix- radix value to use for parsing- Returns:
- parsed value as a long
- Throws:
java.io.IOException- when the value cannot be parsed
-
-