|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Matrix.Partition>
maspack.matrix.Matrix.Partition
public static enum Matrix.Partition
Describes different partitions of a matrix object.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Matrix.Partition None
public static final Matrix.Partition Full
public static final Matrix.Partition UpperTriangular
public static final Matrix.Partition LowerTriangular
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |