Serializable
, Comparable<MathArrays.OrderDirection>
public static enum MathArrays.OrderDirection extends Enum<MathArrays.OrderDirection>
Enum Constant | Description |
---|---|
DECREASING |
Constant for decreasing direction.
|
INCREASING |
Constant for increasing direction.
|
Modifier and Type | Method | Description |
---|---|---|
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.
|
public static final MathArrays.OrderDirection INCREASING
public static final MathArrays.OrderDirection DECREASING
public static MathArrays.OrderDirection[] values()
for (MathArrays.OrderDirection c : MathArrays.OrderDirection.values()) System.out.println(c);
public static MathArrays.OrderDirection valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016–2018 Hipparchus.org. All rights reserved.