public static enum Matrix.MatrixType extends Enum<Matrix.MatrixType>
Enum Constant and Description |
---|
GENERAL
Matrix is general rectangular.
|
SYMMETRIC
Matrix is square symmetric.
|
Modifier and Type | Method and Description |
---|---|
static Matrix.MatrixType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Matrix.MatrixType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Matrix.MatrixType GENERAL
public static final Matrix.MatrixType SYMMETRIC
public static Matrix.MatrixType[] values()
for (Matrix.MatrixType c : Matrix.MatrixType.values()) System.out.println(c);
public static Matrix.MatrixType 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 © 2020 Rogue Wave Software. All rights reserved.