net.sf.javagimmicks.math.comparator.FloatComparator 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 Float} instances.
*/
public class FloatComparator implements Comparator
{
@Override
public int compare(final Float o1, final Float o2)
{
return o1.compareTo(o2);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy