net.sf.javagimmicks.math.comparator.LongComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.math.comparator;
import java.util.Comparator;
/**
* A {@link Comparator} that compares {@link Long} instances.
*/
public class LongComparator implements Comparator
{
@Override
public int compare(final Long o1, final Long o2)
{
return o1.compareTo(o2);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy