Package com.bayesserver.causal
Enum BackdoorMethod
- java.lang.Object
-
- java.lang.Enum<BackdoorMethod>
-
- com.bayesserver.causal.BackdoorMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<BackdoorMethod>
public enum BackdoorMethod extends Enum<BackdoorMethod>
The sets for the Backdoor criterion to find.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LIST_MINIMUM_SEPARATORS
Generates a list of adjustment sets that are minimal.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BackdoorMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static BackdoorMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIST_MINIMUM_SEPARATORS
public static final BackdoorMethod LIST_MINIMUM_SEPARATORS
Generates a list of adjustment sets that are minimal. I.e. for each set generated X, there is not another subset of X that can perform the separation.
-
-
Method Detail
-
values
public static BackdoorMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BackdoorMethod c : BackdoorMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BackdoorMethod valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-