il2.inf
Enum Algorithm.Query
Object
Enum<Algorithm.Query>
Algorithm.Query
- All Implemented Interfaces:
- Serializable, Comparable<Algorithm.Query>
- Enclosing class:
- Algorithm
public static enum Algorithm.Query
- extends Enum<Algorithm.Query>
kind of query that an inference engine might support
Method Summary |
static Algorithm.Query |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Algorithm.Query[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
probabilityofevidence
public static final Algorithm.Query probabilityofevidence
marginal
public static final Algorithm.Query marginal
mpe
public static final Algorithm.Query mpe
map
public static final Algorithm.Query map
partialderivative
public static final Algorithm.Query partialderivative
DEFAULT
public static final Set<Algorithm.Query> DEFAULT
values
public static Algorithm.Query[] 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 (Algorithm.Query c : Algorithm.Query.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Algorithm.Query 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 name
NullPointerException
- if the argument is null
Copyright 2010 UCLA Automated Reasoning Group