public enum InconsistentEvidenceMode extends Enum<InconsistentEvidenceMode>
InconsistentEvidenceException is raied.| Enum Constant and 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.
|
| Modifier and Type | Method and 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.
|
public static final InconsistentEvidenceMode QUERY_OPTIMIZED
public static final InconsistentEvidenceMode ALL_EVIDENCE
public static InconsistentEvidenceMode[] values()
for (InconsistentEvidenceMode c : InconsistentEvidenceMode.values()) System.out.println(c);
public static InconsistentEvidenceMode 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.