Uses of Class
org.apache.commons.math.util.MathUtils.OrderDirection
-
Packages that use MathUtils.OrderDirection Package Description org.apache.commons.math.exception Specialized exceptions for algorithms errors.org.apache.commons.math.util Convenience routines and common data structures used throughout the commons-math library. -
-
Uses of MathUtils.OrderDirection in org.apache.commons.math.exception
Methods in org.apache.commons.math.exception that return MathUtils.OrderDirection Modifier and Type Method Description MathUtils.OrderDirection
NonMonotonousSequenceException. getDirection()
Constructors in org.apache.commons.math.exception with parameters of type MathUtils.OrderDirection Constructor Description NonMonotonousSequenceException(java.lang.Number wrong, java.lang.Number previous, int index, MathUtils.OrderDirection direction, boolean strict)
Construct the exception. -
Uses of MathUtils.OrderDirection in org.apache.commons.math.util
Methods in org.apache.commons.math.util that return MathUtils.OrderDirection Modifier and Type Method Description static MathUtils.OrderDirection
MathUtils.OrderDirection. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MathUtils.OrderDirection[]
MathUtils.OrderDirection. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.math.util with parameters of type MathUtils.OrderDirection Modifier and Type Method Description static void
MathUtils. checkOrder(double[] val, MathUtils.OrderDirection dir, boolean strict)
Checks that the given array is sorted.
-