public static enum ComplexNDArrayUtil.MatrixOp extends Enum<ComplexNDArrayUtil.MatrixOp>
Enum Constant and Description |
---|
COLUMN_MAX |
COLUMN_MEAN |
COLUMN_MIN |
COLUMN_SUM |
ROW_MAX |
ROW_MEAN |
ROW_MIN |
ROW_SUM |
Modifier and Type | Method and Description |
---|---|
static ComplexNDArrayUtil.MatrixOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComplexNDArrayUtil.MatrixOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComplexNDArrayUtil.MatrixOp COLUMN_MIN
public static final ComplexNDArrayUtil.MatrixOp COLUMN_MAX
public static final ComplexNDArrayUtil.MatrixOp COLUMN_SUM
public static final ComplexNDArrayUtil.MatrixOp COLUMN_MEAN
public static final ComplexNDArrayUtil.MatrixOp ROW_MIN
public static final ComplexNDArrayUtil.MatrixOp ROW_MAX
public static final ComplexNDArrayUtil.MatrixOp ROW_SUM
public static final ComplexNDArrayUtil.MatrixOp ROW_MEAN
public static ComplexNDArrayUtil.MatrixOp[] values()
for (ComplexNDArrayUtil.MatrixOp c : ComplexNDArrayUtil.MatrixOp.values()) System.out.println(c);
public static ComplexNDArrayUtil.MatrixOp 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 © 2014. All Rights Reserved.