public static enum FactorAnalysis.ScoreMethod extends Enum<FactorAnalysis.ScoreMethod>
Enum Constant and Description |
---|
ANDERSON_RUBIN
Use the method of Anderson and Rubin.
|
BARTLETT
Use Bartlett's weighted least squares method.
|
IMAGE
Use image method.
|
LEAST_SQUARES
Use Least-squares method.
|
REGRESSION
Use regression method.
|
Modifier and Type | Method and Description |
---|---|
static FactorAnalysis.ScoreMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FactorAnalysis.ScoreMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FactorAnalysis.ScoreMethod REGRESSION
public static final FactorAnalysis.ScoreMethod LEAST_SQUARES
public static final FactorAnalysis.ScoreMethod BARTLETT
public static final FactorAnalysis.ScoreMethod ANDERSON_RUBIN
public static final FactorAnalysis.ScoreMethod IMAGE
public static FactorAnalysis.ScoreMethod[] values()
for (FactorAnalysis.ScoreMethod c : FactorAnalysis.ScoreMethod.values()) System.out.println(c);
public static FactorAnalysis.ScoreMethod 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 © 2020 Rogue Wave Software. All rights reserved.