public static enum MatrixInfo.MatrixSymmetry extends Enum<MatrixInfo.MatrixSymmetry>
| Enum Constant and Description | 
|---|
| GeneralGeneral matrix, no symmetry | 
| HermitianHermitian matrix. | 
| SkewSymmetricSkew symmetrical matrix | 
| SymmetricSymmetrical matrix | 
| Modifier and Type | Method and Description | 
|---|---|
| static MatrixInfo.MatrixSymmetry | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MatrixInfo.MatrixSymmetry[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MatrixInfo.MatrixSymmetry General
public static final MatrixInfo.MatrixSymmetry Symmetric
public static final MatrixInfo.MatrixSymmetry SkewSymmetric
public static final MatrixInfo.MatrixSymmetry Hermitian
public static MatrixInfo.MatrixSymmetry[] values()
for (MatrixInfo.MatrixSymmetry c : MatrixInfo.MatrixSymmetry.values()) System.out.println(c);
public static MatrixInfo.MatrixSymmetry 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