Package com.bayesserver.analysis
Class CombinationOptions
- java.lang.Object
-
- com.bayesserver.analysis.CombinationOptions
-
public final class CombinationOptions extends Object
Determines which combinations are generated byCombinations
.
-
-
Constructor Summary
Constructors Constructor Description CombinationOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getEnumerateAllMissing()
Gets a value which indicates whether the combination where all states are null/missing should be included in the enumeration.boolean
getEnumerateMissing()
Gets a value which indicates whether null/missing values should be enumerated in addition to each state.void
setEnumerateAllMissing(boolean value)
Sets a value which indicates whether the combination where all states are null/missing should be included in the enumeration.void
setEnumerateMissing(boolean value)
Sets a value which indicates whether null/missing values should be enumerated in addition to each state.
-
-
-
Method Detail
-
getEnumerateMissing
public boolean getEnumerateMissing()
Gets a value which indicates whether null/missing values should be enumerated in addition to each state.
-
setEnumerateMissing
public void setEnumerateMissing(boolean value)
Sets a value which indicates whether null/missing values should be enumerated in addition to each state.
-
getEnumerateAllMissing
public boolean getEnumerateAllMissing()
Gets a value which indicates whether the combination where all states are null/missing should be included in the enumeration.
-
setEnumerateAllMissing
public void setEnumerateAllMissing(boolean value)
Sets a value which indicates whether the combination where all states are null/missing should be included in the enumeration.
-
-