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

com.legstar.base.utils.NumUtils Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.legstar.base.utils;

public class NumUtils {

    public static int longToInt(long l) {
        if (l < Integer.MIN_VALUE || l > Integer.MAX_VALUE) {
            throw new IllegalArgumentException(l
                    + " cannot be cast to int");
        }
        return (int) l;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy