
com.tatateo.test.PriorityComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-utils Show documentation
Show all versions of test-utils Show documentation
Utility classes for tests
The newest version!
package com.tatateo.test;
import java.util.Comparator;
/**
* Reversed priority comparator.
* @author teo
* @since 14.02.2016
*/
public class PriorityComparator implements Comparator {
public int compare(ExtendedMethod left, ExtendedMethod right) {
return Integer.valueOf(right.priority).compareTo(left.priority);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy