public enum AutoInsightKLDivergence extends Enum<AutoInsightKLDivergence>
| Enum Constant and Description | 
|---|
NONE
KL divergence is not calculated during the auto-insight analysis. 
 | 
SIMPLE
When distributions are compared during the auto-insight process, marginal distributions, rather than joint distributions, are compared. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static AutoInsightKLDivergence | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AutoInsightKLDivergence[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final AutoInsightKLDivergence NONE
public static final AutoInsightKLDivergence SIMPLE
public static AutoInsightKLDivergence[] values()
for (AutoInsightKLDivergence c : AutoInsightKLDivergence.values()) System.out.println(c);
public static AutoInsightKLDivergence 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 © 2021. All rights reserved.