public enum AutoInsightJSDivergence extends Enum<AutoInsightJSDivergence>
| Enum Constant and Description | 
|---|
NONE
Jensen Shannon 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 AutoInsightJSDivergence | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static AutoInsightJSDivergence[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final AutoInsightJSDivergence NONE
public static final AutoInsightJSDivergence SIMPLE
public static AutoInsightJSDivergence[] values()
for (AutoInsightJSDivergence c : AutoInsightJSDivergence.values()) System.out.println(c);
public static AutoInsightJSDivergence 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.