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

Alachisoft.NCache.Common.Comparators.IntegerComparator Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package Alachisoft.NCache.Common.Comparators;

import java.util.Comparator;

/**
 * @author Basit Anwer
 */
public class IntegerComparator implements Comparator {

    @Override
    public int compare(Integer t, Integer t1) {
        return t.compareTo(t1);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy