public static enum IntSquareMatrix.Type extends Enum<IntSquareMatrix.Type>
| Enum Constant and Description |
|---|
DIAGONAL |
LOWER_TRIANGLE |
OUTER_PRODUCT |
SYMMETRIC |
UNKNOWN |
UPPER_TRIANGLE |
| Modifier and Type | Field and Description |
|---|---|
int |
i
integer value
|
| Modifier and Type | Method and Description |
|---|---|
static IntSquareMatrix.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntSquareMatrix.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntSquareMatrix.Type UPPER_TRIANGLE
public static final IntSquareMatrix.Type LOWER_TRIANGLE
public static final IntSquareMatrix.Type SYMMETRIC
public static final IntSquareMatrix.Type DIAGONAL
public static final IntSquareMatrix.Type OUTER_PRODUCT
public static final IntSquareMatrix.Type UNKNOWN
public static IntSquareMatrix.Type[] values()
for (IntSquareMatrix.Type c : IntSquareMatrix.Type.values()) System.out.println(c);
public static IntSquareMatrix.Type 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 © 1994–2024 Peter Murray-Rust. All rights reserved.