![JAR search and dependency download from the Maven repository](/logo.png)
org.lsmp.djep.groupJep.interfaces.OrderedSetI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jep Show documentation
Show all versions of jep Show documentation
JEP is a Java library for parsing and evaluating mathematical expressions.
/* @author rich
* Created on 06-Mar-2004
*/
package org.lsmp.djep.groupJep.interfaces;
/**
* Groups which have a total ordering, i.e <, >= make sense.
* @see java.lang.Comparable
* @author Rich Morris
* Created on 06-Mar-2004
*/
public interface OrderedSetI {
/** Returns -1,0,1 depending on whether a is less than, equal to or greater than b. */
public int compare(Number a,Number b);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy