public static enum MatrixInfo.MatrixField extends Enum<MatrixInfo.MatrixField>
Enum Constant and Description |
---|
Complex
Complex numbers
|
Integer
Integers
|
Pattern
Pattern matrix.
|
Real
Real numbers
|
Modifier and Type | Method and Description |
---|---|
static MatrixInfo.MatrixField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatrixInfo.MatrixField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatrixInfo.MatrixField Real
public static final MatrixInfo.MatrixField Integer
public static final MatrixInfo.MatrixField Complex
public static final MatrixInfo.MatrixField Pattern
public static MatrixInfo.MatrixField[] values()
for (MatrixInfo.MatrixField c : MatrixInfo.MatrixField.values()) System.out.println(c);
public static MatrixInfo.MatrixField 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 nullJump to the Parallel Colt Homepage