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

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

package net.sf.javagimmicks.math.comparator;

import java.util.Comparator;

public class ByteComparator implements Comparator
{
   public int compare(Byte o1, Byte o2)
   {
      return o1.compareTo(o2);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy