public static enum SymmetricMatrix.SYMMETRIC extends Enum<SymmetricMatrix.SYMMETRIC>
Enum Constant and Description |
---|
TRIGINF
The lower part.
|
TRIGSUP
The upper part.
|
Modifier and Type | Method and Description |
---|---|
static SymmetricMatrix.SYMMETRIC |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SymmetricMatrix.SYMMETRIC[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymmetricMatrix.SYMMETRIC TRIGINF
public static final SymmetricMatrix.SYMMETRIC TRIGSUP
public static SymmetricMatrix.SYMMETRIC[] values()
for (SymmetricMatrix.SYMMETRIC c : SymmetricMatrix.SYMMETRIC.values()) System.out.println(c);
public static SymmetricMatrix.SYMMETRIC 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 © 2017 CNES. All rights reserved.