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

org.aksw.commons.collections.NaturalComparator Maven / Gradle / Ivy

There is a newer version: 0.9.9
Show newest version
package org.aksw.commons.collections;

import java.util.Comparator;

/**
 * Created by Claus Stadler
 * Date: Oct 9, 2010
 * Time: 5:47:19 PM
 */
public class NaturalComparator>
    implements Comparator
{
    public int compare(T a, T b) {
        return a.compareTo(b);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy