org.apache.commons.math3.util
Enum MathArrays.OrderDirection

java.lang.Object
  extended by java.lang.Enum<MathArrays.OrderDirection>
      extended by org.apache.commons.math3.util.MathArrays.OrderDirection
All Implemented Interfaces:
Serializable, Comparable<MathArrays.OrderDirection>
Enclosing class:
MathArrays

public static enum MathArrays.OrderDirection
extends Enum<MathArrays.OrderDirection>

Specification of ordering direction.


Enum Constant Summary
DECREASING
          Constant for decreasing direction.
INCREASING
          Constant for increasing direction.
 
Method Summary
static MathArrays.OrderDirection valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MathArrays.OrderDirection[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INCREASING

public static final MathArrays.OrderDirection INCREASING
Constant for increasing direction.


DECREASING

public static final MathArrays.OrderDirection DECREASING
Constant for decreasing direction.

Method Detail

values

public static MathArrays.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 (MathArrays.OrderDirection c : MathArrays.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 MathArrays.OrderDirection valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2017 CNES. All Rights Reserved.