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

net.sf.javagimmicks.math.comparator.ShortComparator Maven / Gradle / Ivy

There is a newer version: 0.99-alpha1
Show newest version
package net.sf.javagimmicks.math.comparator;

import java.util.Comparator;

/**
 * A {@link Comparator} that compares {@link Short} instances.
 */
public class ShortComparator implements Comparator
{
   @Override
   public int compare(final Short o1, final Short o2)
   {
      return o1.compareTo(o2);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy