public enum DecisionPostProcessingMethod extends Enum<DecisionPostProcessingMethod>
| Enum Constant and Description | 
|---|
NOT_APPLICABLE
There are no decision nodes in the network. 
 | 
PROBABILITIES
The distributions learned from the data are left intact and not overridden. 
 | 
UNIFORM
The distribution of each decision node is overwritten with a uniform distribution, but only once learning is complete. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DecisionPostProcessingMethod | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DecisionPostProcessingMethod[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DecisionPostProcessingMethod NOT_APPLICABLE
public static final DecisionPostProcessingMethod UNIFORM
public static final DecisionPostProcessingMethod PROBABILITIES
public static DecisionPostProcessingMethod[] values()
for (DecisionPostProcessingMethod c : DecisionPostProcessingMethod.values()) System.out.println(c);
public static DecisionPostProcessingMethod 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.