com.aventstack.extentreports.utils.IntUtils Maven / Gradle / Ivy
package com.aventstack.extentreports.utils;
public class IntUtils {
private IntUtils() {
}
public static boolean tryParseInt(String value) {
try {
Integer.parseInt(value);
return true;
} catch (NumberFormatException e) {
return false;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy