public static enum ArrayRowSymmetricMatrix.SymmetryType extends Enum<ArrayRowSymmetricMatrix.SymmetryType>
| Enum Constant and Description |
|---|
LOWER
The lower part.
|
MEAN
Average value on the non-diagonal symmetric terms.
|
UPPER
The upper part.
|
| Modifier and Type | Method and Description |
|---|---|
static ArrayRowSymmetricMatrix.SymmetryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrayRowSymmetricMatrix.SymmetryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayRowSymmetricMatrix.SymmetryType LOWER
public static final ArrayRowSymmetricMatrix.SymmetryType UPPER
public static final ArrayRowSymmetricMatrix.SymmetryType MEAN
public static ArrayRowSymmetricMatrix.SymmetryType[] values()
for (ArrayRowSymmetricMatrix.SymmetryType c : ArrayRowSymmetricMatrix.SymmetryType.values()) System.out.println(c);
public static ArrayRowSymmetricMatrix.SymmetryType 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 © 2025 CNES. All rights reserved.