io.ebeaninternal.server.el.ElComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.el;
import java.util.Comparator;
/**
* Comparator for use with the expression objects.
*/
public interface ElComparator extends Comparator {
/**
* Compare given 2 beans.
*/
int compare(T o1, T o2);
/**
* Compare with a fixed value to a given bean.
*/
int compareValue(Object value, T o2);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy