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

us.codecraft.webmagic.utils.NumberUtils Maven / Gradle / Ivy

The newest version!
package us.codecraft.webmagic.utils;

/**
 * @author [email protected]
 */
public abstract class NumberUtils {

    public static int compareLong(long o1, long o2) {
    	return Long.compare(o1, o2);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy