public enum ValueOfInformationKind extends Enum<ValueOfInformationKind>
| Enum Constant and Description | 
|---|
M_E_U
The maximum expected utility of a decision node given the test and any other evidence, 
 | 
MUTUAL_INFORMATION
The mutual information between the hypothesis and the test, given any evidence. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ValueOfInformationKind | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ValueOfInformationKind[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ValueOfInformationKind M_E_U
public static final ValueOfInformationKind MUTUAL_INFORMATION
public static ValueOfInformationKind[] values()
for (ValueOfInformationKind c : ValueOfInformationKind.values()) System.out.println(c);
public static ValueOfInformationKind 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.