Package org.apache.commons.math.util
Enum MathUtils.OrderDirection
- java.lang.Object
-
- java.lang.Enum<MathUtils.OrderDirection>
-
- org.apache.commons.math.util.MathUtils.OrderDirection
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MathUtils.OrderDirection>
- Enclosing class:
- MathUtils
public static enum MathUtils.OrderDirection extends java.lang.Enum<MathUtils.OrderDirection>
Specification of ordering direction.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DECREASING
Constant for decreasing direction.INCREASING
Constant for increasing direction.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MathUtils.OrderDirection
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MathUtils.OrderDirection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INCREASING
public static final MathUtils.OrderDirection INCREASING
Constant for increasing direction.
-
DECREASING
public static final MathUtils.OrderDirection DECREASING
Constant for decreasing direction.
-
-
Method Detail
-
values
public static MathUtils.OrderDirection[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MathUtils.OrderDirection c : MathUtils.OrderDirection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MathUtils.OrderDirection valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-