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

com.github.kaisle.util.NumberUtil Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.github.kaisle.util;



import java.util.logging.Logger;

/**
 * Created by Anders Borum on 03-06-2015.
 */
public class NumberUtil {

    final static org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(NumberUtil.class);

    public static void evaluateString(String stringToBeEvaluated) {
        try {
            new Integer(stringToBeEvaluated);
        }
        catch (NumberFormatException e) {
            log.info("Not a valid match id");
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy