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

fun.langel.cql.util.IntegerUtil Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.util;

/**
 * @author [email protected](GuHan)
 * @since 2022/7/27 14:15
 **/
public class IntegerUtil {

    private IntegerUtil() {
    }

    public static int tryParse(final String v) {
        try {
            return Integer.parseInt(v);
        } catch (Exception ex) {
            return 0;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy