public enum DSeparationCategory extends Enum<DSeparationCategory>
| Enum Constant and Description | 
|---|
D_CONNECTED
The test node is D-Connected to the source nodes. 
 | 
D_SEPARATED
The test node is D-Separated from the source nodes. 
 | 
FULLY_INSTANTIATED
The test node has hard evidence set on all of its variables. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DSeparationCategory | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DSeparationCategory[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DSeparationCategory D_SEPARATED
public static final DSeparationCategory D_CONNECTED
public static final DSeparationCategory FULLY_INSTANTIATED
public static DSeparationCategory[] values()
for (DSeparationCategory c : DSeparationCategory.values()) System.out.println(c);
public static DSeparationCategory 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.