public enum InformationCriterion extends Enum<InformationCriterion>
| Enum Constant and Description |
|---|
AIC
Akaike information criterion
|
AICc
AIC with a correction for finite sample sizes
|
BIC
Bayesian information criterion
|
| Modifier and Type | Method and Description |
|---|---|
static InformationCriterion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InformationCriterion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InformationCriterion AIC
public static final InformationCriterion AICc
public static final InformationCriterion BIC
public static InformationCriterion[] values()
for (InformationCriterion c : InformationCriterion.values()) System.out.println(c);
public static InformationCriterion 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 © 2015–2016 Red Hat, Inc.. All rights reserved.