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

org.mydotey.quantile.value.IntComparator Maven / Gradle / Ivy

The newest version!
package org.mydotey.quantile.value;

import java.util.Comparator;

/**
 * @author koqizhao
 *
 * Apr 1, 2018
 */
public class IntComparator implements Comparator {

    public static final IntComparator DEFAULT = new IntComparator();

    @Override
    public int compare(Integer o1, Integer o2) {
        return o1 > o2 ? 1 : (o1 == o2 ? 0 : -1);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy