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

io.ebeaninternal.server.el.ElComparatorNoop Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeaninternal.server.el;

/**
 * Comparator with no operation for unsortable properties.
 *
 * @author Roland Praml, FOCONIS AG
 *
 */
public final class ElComparatorNoop implements ElComparator {

  private static final long serialVersionUID = -9060871822183687180L;

  @Override
  public int compare(T o1, T o2) {
    return 0;
  }

  @Override
  public int compareValue(Object value, T o2) {
    return 0;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy