public enum Ordering extends Enum<Ordering>
Covariance
elements ordering.Enum Constant and Description |
---|
FULL
Full symmetrix Matrix.
|
LTM
Lower Triangular Matrix.
|
LTMWCC
Lower Triangular Matrix conflated with cross-correlation terms.
|
UTM
Upper Triangular Matrix.
|
UTMWCC
Upper Triangular Matrix conflated with cross-correlation terms.
|
Modifier and Type | Method and Description |
---|---|
static Ordering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ordering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ordering LTM
public static final Ordering UTM
public static final Ordering FULL
public static final Ordering LTMWCC
public static final Ordering UTMWCC
public static Ordering[] values()
for (Ordering c : Ordering.values()) System.out.println(c);
public static Ordering 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 © 2002-2022 CS GROUP. All rights reserved.