public static enum RealSquareMatrix.Type extends Enum<RealSquareMatrix.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 RealSquareMatrix.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RealSquareMatrix.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RealSquareMatrix.Type UPPER_TRIANGLE
public static final RealSquareMatrix.Type LOWER_TRIANGLE
public static final RealSquareMatrix.Type SYMMETRIC
public static final RealSquareMatrix.Type DIAGONAL
public static final RealSquareMatrix.Type OUTER_PRODUCT
public static final RealSquareMatrix.Type UNKNOWN
public static RealSquareMatrix.Type[] values()
for (RealSquareMatrix.Type c : RealSquareMatrix.Type.values()) System.out.println(c);
public static RealSquareMatrix.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.