All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aventstack.extentreports.reporter.IntUtil Maven / Gradle / Ivy

There is a newer version: 5.1.0
Show newest version
package com.aventstack.extentreports.reporter;

public class IntUtil {
    private IntUtil() {
    }

    public static boolean tryParseInt(String value) {
        try {
            Integer.parseInt(value);
            return true;
        } catch (NumberFormatException e) {
            return false;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy