Package com.bayesserver.inference
Enum InconsistentEvidenceMode
- java.lang.Object
-
- java.lang.Enum<InconsistentEvidenceMode>
-
- com.bayesserver.inference.InconsistentEvidenceMode
-
- All Implemented Interfaces:
Serializable
,Comparable<InconsistentEvidenceMode>
public enum InconsistentEvidenceMode extends Enum<InconsistentEvidenceMode>
Determines when anInconsistentEvidenceException
is raied.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_EVIDENCE
In this mode, all evidence is checked for inconsistencies, by checking the log-likelihood, and raising an exception if -Infinity.QUERY_OPTIMIZED
This is the default mode, and only raises an exception, when the requested queries cannot be computed.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InconsistentEvidenceMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static InconsistentEvidenceMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUERY_OPTIMIZED
public static final InconsistentEvidenceMode QUERY_OPTIMIZED
This is the default mode, and only raises an exception, when the requested queries cannot be computed.
-
ALL_EVIDENCE
public static final InconsistentEvidenceMode ALL_EVIDENCE
In this mode, all evidence is checked for inconsistencies, by checking the log-likelihood, and raising an exception if -Infinity. The log-likelihood option must be set to true when using this mode.
-
-
Method Detail
-
values
public static InconsistentEvidenceMode[] 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 (InconsistentEvidenceMode c : InconsistentEvidenceMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InconsistentEvidenceMode 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
-
-