public static enum Matrix.Partition extends java.lang.Enum<Matrix.Partition>
Enum Constant and Description |
---|
Full
Specfies the entire matrix.
|
LowerTriangular
Specifices the lower triangular portion of this matrix.
|
None
No partition specified.
|
UpperTriangular
Specifices the upper triangular portion of this matrix.
|
Modifier and Type | Method and Description |
---|---|
static Matrix.Partition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Matrix.Partition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Matrix.Partition None
public static final Matrix.Partition Full
public static final Matrix.Partition UpperTriangular
public static final Matrix.Partition LowerTriangular
public static Matrix.Partition[] values()
for (Matrix.Partition c : Matrix.Partition.values()) System.out.println(c);
public static Matrix.Partition valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null