public static enum Levene.Type extends Enum<Levene.Type>
Enum Constant and Description |
---|
MEANS
compute the absolute
deviations from the group means
|
MEDIAN
compute the absolute deviations from the group medians
|
TRIMMED_MEANS
compute the absolute
deviations from the group trimmed means
|
Modifier and Type | Method and Description |
---|---|
static Levene.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Levene.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Levene.Type MEDIAN
public static final Levene.Type MEANS
public static final Levene.Type TRIMMED_MEANS
public static Levene.Type[] values()
for (Levene.Type c : Levene.Type.values()) System.out.println(c);
public static Levene.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 © 2010-2020 NM FinTech Ltd.. All Rights Reserved.